Merge pull request #6822 from yzct12345/clion-assert

assert: Avoid empty macros
This commit is contained in:
bunnei 2021-08-05 22:29:45 -07:00 committed by GitHub
commit 42d8e08f78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,8 +52,12 @@ assert_noinline_call(const Fn& fn) {
#define DEBUG_ASSERT(_a_) ASSERT(_a_) #define DEBUG_ASSERT(_a_) ASSERT(_a_)
#define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__) #define DEBUG_ASSERT_MSG(_a_, ...) ASSERT_MSG(_a_, __VA_ARGS__)
#else // not debug #else // not debug
#define DEBUG_ASSERT(_a_) #define DEBUG_ASSERT(_a_) \
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...) do { \
} while (0)
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...) \
do { \
} while (0)
#endif #endif
#define UNIMPLEMENTED() ASSERT_MSG(false, "Unimplemented code!") #define UNIMPLEMENTED() ASSERT_MSG(false, "Unimplemented code!")