Răsfoiți Sursa

assert: Avoid empty macros

yzct12345 5 ani în urmă
părinte
comite
346149dcf9
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/common/assert.h

+ 2 - 2
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!")