mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #10624 from Minty-Meeo/resolve-gcc-warnings
Resolve Linux GCC Warnings
This commit is contained in:
@ -105,7 +105,7 @@ public:
|
||||
case Mode::Read:
|
||||
for (x.clear(); count != 0; --count)
|
||||
{
|
||||
V value;
|
||||
V value = {};
|
||||
Do(value);
|
||||
x.insert(value);
|
||||
}
|
||||
|
@ -14,5 +14,7 @@ public:
|
||||
void Log(Common::Log::LogLevel level, const char* text) override;
|
||||
|
||||
private:
|
||||
[[maybe_unused]] bool m_use_color = false;
|
||||
#if !defined _WIN32 && !defined ANDROID
|
||||
bool m_use_color = false;
|
||||
#endif
|
||||
};
|
||||
|
Reference in New Issue
Block a user