marked unused param

This commit is contained in:
matthias@arch 2023-02-01 18:46:01 +01:00
parent c45bd6137c
commit 0c01e743f8

View File

@ -315,7 +315,7 @@ class Log {
void vlog(const char* appendChars, T&& t, Args&&... args) requires (!util::Stringy<T>); void vlog(const char* appendChars, T&& t, Args&&... args) requires (!util::Stringy<T>);
/// End for the recursion /// End for the recursion
void vlog(const char* appendChars) {}; void vlog([[maybe_unused]] const char* appendChars) {};
private: private:
void init(); void init();