mirror of https://github.com/stella-emu/stella.git
Tone down warning wrt redundant 'default' in switch/case statements.
This commit is contained in:
parent
5317c86f23
commit
a2f175402e
2
Makefile
2
Makefile
|
@ -55,7 +55,7 @@ ifdef HAVE_GCC
|
||||||
endif
|
endif
|
||||||
ifdef HAVE_CLANG
|
ifdef HAVE_CLANG
|
||||||
CXXFLAGS+= -Weverything -Wno-c++17-extensions -Wno-c++98-compat -Wno-c++98-compat-pedantic \
|
CXXFLAGS+= -Weverything -Wno-c++17-extensions -Wno-c++98-compat -Wno-c++98-compat-pedantic \
|
||||||
-Wno-double-promotion -Wno-switch-enum -Wno-conversion \
|
-Wno-double-promotion -Wno-switch-enum -Wno-conversion -Wno-covered-switch-default \
|
||||||
-Wno-inconsistent-missing-destructor-override \
|
-Wno-inconsistent-missing-destructor-override \
|
||||||
-Wno-exit-time-destructors -Wno-global-constructors -Wno-weak-vtables \
|
-Wno-exit-time-destructors -Wno-global-constructors -Wno-weak-vtables \
|
||||||
-Wno-four-char-constants -Wno-padded
|
-Wno-four-char-constants -Wno-padded
|
||||||
|
|
Loading…
Reference in New Issue