summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-02-20 18:56:50 +0100
committerGitHub <noreply@github.com>2022-02-20 18:56:50 +0100
commit128fa8aec3738ab76075836780f7724a02d87f42 (patch)
treeebd8a145b989014c73a9d693c929912f6c054efd /Source/Core
parentdb0ca3fc964375369d4c9d1a0ecd2bd0fb3b0132 (diff)
parentd3ae1bd415f328ebd679828a79dca219856c1e39 (diff)
Merge pull request #10388 from Dentomologist/android-fix-unused-variable-warning
[Android] Fix unused variable warning
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/Logging/ConsoleListener.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Logging/ConsoleListener.h b/Source/Core/Common/Logging/ConsoleListener.h
index 2c5e744751..3901f29580 100644
--- a/Source/Core/Common/Logging/ConsoleListener.h
+++ b/Source/Core/Common/Logging/ConsoleListener.h
@@ -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;
};