diff options
author | yzct12345 <87620833+yzct12345@users.noreply.github.com> | 2021-08-05 17:21:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 17:21:56 +0000 |
commit | 346149dcf9ad4f1c34ae504c03d8b1b32f8474b9 (patch) | |
tree | c8f5b37a3f2a3fc4985e75dde4f5d25957c3f99b /src | |
parent | a1cb453470d95f7bcedf6235e6a2761bc2ef34c8 (diff) |
assert: Avoid empty macros
Diffstat (limited to 'src')
-rw-r--r-- | src/common/assert.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/assert.h b/src/common/assert.h index b3ba35c0f9..f71beec8ed 100644 --- a/src/common/assert.h +++ b/src/common/assert.h @@ -52,8 +52,8 @@ 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!") |