[Android] Fix unused variable warning

Add [[maybe_unused]] attribute to ConsoleListener's m_use_color
This commit is contained in:
Dentomologist 2022-01-25 14:15:18 -08:00
parent 237947e2f1
commit d3ae1bd415
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ public:
void Log(Common::Log::LogLevel level, const char* text) override; void Log(Common::Log::LogLevel level, const char* text) override;
private: private:
bool m_use_color = false; [[maybe_unused]] bool m_use_color = false;
}; };