diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-30 11:44:53 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-30 11:44:53 +0200 |
commit | 92ea4d16a274b4a7db0206fd74891a555f6501c9 (patch) | |
tree | 358a1b98f6d5c0985c2eaabc3c19b1b7db7327ba /src/macros_and_utils.h | |
parent | d60a9fb712886880ec9630e744e1258ec3ed19b1 (diff) | |
download | lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.tar.gz lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.tar.bz2 lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.zip |
Progressively applying the coding rules
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_, |