Avoid C99 style compound statement

This commit is contained in:
Marvin Schmidt 2016-05-28 12:57:24 -04:00 committed by Chris Pavlina
parent 5b3d1d72e8
commit 92a3743590
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ protected:
}
if( collision != COLLIDE_NONE )
colliding.push_back( (SIDE_AND_COLL){ side, collision } );
colliding.push_back( { side, collision } );
}
return colliding;