Change CATCH_BREAK_INTO_DEBUGGER to always expand into a function call

This avoids -Wextra-semi-stmt warning inside our code
This commit is contained in:
Martin Hořeňovský 2019-01-13 23:22:28 +01:00
parent 17e09be3b9
commit 75200b462c
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 2 additions and 5 deletions

View File

@ -38,12 +38,9 @@ namespace Catch {
#endif
#ifdef CATCH_TRAP
#define CATCH_BREAK_INTO_DEBUGGER() if( Catch::isDebuggerActive() ) { CATCH_TRAP(); }
#define CATCH_BREAK_INTO_DEBUGGER() []{ if( Catch::isDebuggerActive() ) { CATCH_TRAP(); } }()
#else
namespace Catch {
inline void doNothing() {}
}
#define CATCH_BREAK_INTO_DEBUGGER() Catch::doNothing()
#define CATCH_BREAK_INTO_DEBUGGER() []{}()
#endif
#endif // TWOBLUECUBES_CATCH_DEBUGGER_H_INCLUDED