diff options
Diffstat (limited to 'src/gui/windows/killstats.cpp')
-rw-r--r-- | src/gui/windows/killstats.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/windows/killstats.cpp b/src/gui/windows/killstats.cpp index 9a712fd21..22d977723 100644 --- a/src/gui/windows/killstats.cpp +++ b/src/gui/windows/killstats.cpp @@ -405,6 +405,8 @@ void KillStats::attributeChanged(const AttributesT id, const int oldVal, const int newVal) { + PRAGMA("GCC diagnostic push") + PRAGMA("GCC diagnostic ignored \"-Wswitch-enum\"") switch (id) { case Attributes::EXP: @@ -436,4 +438,5 @@ void KillStats::attributeChanged(const AttributesT id, default: break; } + PRAGMA("GCC diagnostic pop") } |