diff options
Diffstat (limited to 'src/macros_and_utils.h')
-rw-r--r-- | src/macros_and_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros_and_utils.h b/src/macros_and_utils.h index 5d1467a..58567ac 100644 --- a/src/macros_and_utils.h +++ b/src/macros_and_utils.h | |||
@@ -64,7 +64,7 @@ template <typename... ARGS> | |||
64 | #define USE_DEBUG_SPEW() 0 | 64 | #define USE_DEBUG_SPEW() 0 |
65 | #if USE_DEBUG_SPEW() | 65 | #if USE_DEBUG_SPEW() |
66 | #define INDENT_BEGIN "%.*s " | 66 | #define INDENT_BEGIN "%.*s " |
67 | #define INDENT_END , (U ? U->debugspew_indent_depth.load(std::memory_order_relaxed) : 0), DebugSpewIndentScope::debugspew_indent | 67 | #define INDENT_END(U_) , (U_ ? U_->debugspew_indent_depth.load(std::memory_order_relaxed) : 0), DebugSpewIndentScope::debugspew_indent |
68 | #define DEBUGSPEW_CODE(_code) _code | 68 | #define DEBUGSPEW_CODE(_code) _code |
69 | #define DEBUGSPEW_OR_NOT(a_, b_) a_ | 69 | #define DEBUGSPEW_OR_NOT(a_, b_) a_ |
70 | #define DEBUGSPEW_PARAM_COMMA(param_) param_, | 70 | #define DEBUGSPEW_PARAM_COMMA(param_) param_, |