diff options
author | bunnei <bunneidev@gmail.com> | 2021-08-05 22:29:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 22:29:45 -0700 |
commit | 42d8e08f7847af3b8e8ceea14ad7193fdbdf53ef (patch) | |
tree | 8c63dc1dc09dfeb650e84841e1f245875502edcf /src | |
parent | e1a92db519db43b365802e0065a9cb8927c241fd (diff) | |
parent | 7e846be3760c579e21ae684fc53c9dcd21b5a415 (diff) |
Merge pull request #6822 from yzct12345/clion-assert
assert: Avoid empty macros
Diffstat (limited to 'src')
-rw-r--r-- | src/common/assert.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/common/assert.h b/src/common/assert.h index b3ba35c0f9..33060d865c 100644 --- a/src/common/assert.h +++ b/src/common/assert.h @@ -52,8 +52,12 @@ assert_noinline_call(const Fn& fn) { #define DEBUG_ASSERT(_a_) ASSERT(_a_) #define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__) #else // not debug -#define DEBUG_ASSERT(_a_) -#define DEBUG_ASSERT_MSG(_a_, _desc_, ...) +#define DEBUG_ASSERT(_a_) \ + do { \ + } while (0) +#define DEBUG_ASSERT_MSG(_a_, _desc_, ...) \ + do { \ + } while (0) #endif #define UNIMPLEMENTED() ASSERT_MSG(false, "Unimplemented code!") |