Fix empty controlled statement on undefined BREAKPOINT_HERE.

shapetextures
Sven Eberhardt 2015-09-06 22:55:35 -04:00
parent c22157c04b
commit 5f0b96d11b
1 changed files with 2 additions and 2 deletions

View File

@ -144,10 +144,10 @@ namespace std { template<typename T> inline T &move (T &t) { return t; } }
# if defined(SIGTRAP)
# define BREAKPOINT_HERE raise(SIGTRAP);
# else
# define BREAKPOINT_HERE
# define BREAKPOINT_HERE ((void)0)
# endif
#else
# define BREAKPOINT_HERE
# define BREAKPOINT_HERE ((void)0)
#endif