diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:50:49 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:50:49 +0200 |
commit | e54ebc7e74f3ca94de3467a03397c0aad2aed079 (patch) | |
tree | 87275746537881f8d21be33ae842374fd3750d49 /src/crepe/util | |
parent | c40332b990b025d2bd7b94e41184d7f0547da203 (diff) |
`make format` + clang-tidy
Diffstat (limited to 'src/crepe/util')
-rw-r--r-- | src/crepe/util/log.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h index 4cab338..bfe7291 100644 --- a/src/crepe/util/log.h +++ b/src/crepe/util/log.h @@ -12,9 +12,12 @@ __FILE_NAME__, __LINE__, crepe::util::color::RESET, \ __VA_ARGS__) +// very illegal global function-style macros +// NOLINTBEGIN #define dbg_logf(fmt, ...) _crepe_logf_here(": " fmt, __VA_ARGS__) #define dbg_log(str) _crepe_logf_here(": %s", str) #define dbg_trace() _crepe_logf_here("%s", "") +// NOLINTEND #endif |