diff options
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/logging.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zencore/include/zencore/logging.h b/zencore/include/zencore/logging.h index 0b080cb9d..468e5d6e2 100644 --- a/zencore/include/zencore/logging.h +++ b/zencore/include/zencore/logging.h @@ -82,9 +82,9 @@ using zen::Log; Log().critical(fmtstr##sv, ##__VA_ARGS__); \ } while (false) -#define ZEN_CONSOLE(fmtstr, ...) \ - do \ - { \ - using namespace std::literals; \ - ConsoleLog().info(fmtstr##sv, __VA_ARGS__); \ +#define ZEN_CONSOLE(fmtstr, ...) \ + do \ + { \ + using namespace std::literals; \ + ConsoleLog().info(fmtstr##sv, ##__VA_ARGS__); \ } while (false) |