Skip to content

Commit

Permalink
FIX prevent warning for unused arguments in box2d
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Dec 6, 2009
1 parent 390c93e commit b88fcef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/lib/box2d/Common/b2Settings.h
Expand Up @@ -22,7 +22,7 @@
#include <assert.h> #include <assert.h>
#include <math.h> #include <math.h>


#define B2_NOT_USED(x) x #define B2_NOT_USED(x) (void)(x)
#define b2Assert(A) assert(A) #define b2Assert(A) assert(A)


// need to include NDS jtypes.h instead of // need to include NDS jtypes.h instead of
Expand Down

0 comments on commit b88fcef

Please sign in to comment.