Fix clang-tidy modernize-use-nullptr warnings in headers

This commit is contained in:
Tim Wojtulewicz 2025-06-10 10:10:34 -07:00
parent f15cab4a2b
commit edf3ceb52c
3 changed files with 3 additions and 3 deletions

View file

@ -71,7 +71,7 @@ public:
DebugLogger() = default;
~DebugLogger();
void OpenDebugLog(const char* filename = 0);
void OpenDebugLog(const char* filename = nullptr);
void Log(DebugStream stream, const char* fmt, ...) __attribute__((format(printf, 3, 4)));
void Log(const plugin::Plugin& plugin, const char* fmt, ...) __attribute__((format(printf, 3, 4)));