Made dummy BreakIntoDebugger() macro an inline function to avoid compiler warning

This commit is contained in:
Phil Nash 2011-02-24 09:55:11 +00:00
parent a691e69dae
commit 7fe330f078
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@
#define BreakIntoDebugger() if( Catch::AmIBeingDebugged() ) {__asm__("int $3\n" : : );}
#endif
#else
#define BreakIntoDebugger()
inline void BreakIntoDebugger(){}
#endif
#elif defined(__WIN32__) && defined(_MSC_VER)