dxx-rebirth/similar
Kp 7b1e774cb8 Hack around buggy clang constant warning
clang whines that static_assert(A && B) uses && with a constant operand,
but this is necessary and correct, because static_assert only takes
compile-time constant expressions.  However, !!A && !!B does not warn.
Switch to !!A && !!B to silence the clang whining.

similar/main/collide.cpp:2566:63: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]
 static_assert(collision_result_t<OBJ_WALL, OBJ_ROBOT>::value && collision_result_t<OBJ_ROBOT, OBJ_WALL>::value, "OBJ_WALL" " " "OBJ_ROBOT");
2015-06-13 22:42:19 +00:00
..
2d Hoist store in gr_internal_string0_template 2015-05-09 17:39:02 +00:00
3d Fix gcc-4.6 interpreter build 2015-05-22 03:33:19 +00:00
arch Use valptr for ogl highest_valid 2015-06-13 22:42:18 +00:00
editor Simplify editor lighting 2015-06-13 22:42:19 +00:00
main Hack around buggy clang constant warning 2015-06-13 22:42:19 +00:00
mem Support biased pointers to help memory debuggers 2015-06-13 22:42:15 +00:00
misc Raise PHYSFSX_exists bool check to caller 2015-05-09 17:39:02 +00:00