Merge pull request #10388 from Dentomologist/android-fix-unused-variable-warning

[Android] Fix unused variable warning
This commit is contained in:
JosJuice 2022-02-20 18:56:50 +01:00 committed by GitHub
commit 128fa8aec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
private:
bool m_use_color = false;
[[maybe_unused]] bool m_use_color = false;
};