1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-28 11:31:22 +00:00

Fix or suppress a bunch of Clang warnings. NFCI.

This commit is contained in:
Arthur O'Dwyer
2021-07-11 17:22:00 -04:00
parent a727fd29a2
commit db762ff21a
5 changed files with 19 additions and 19 deletions

View File

@@ -83,7 +83,7 @@ ifeq (${TOOLCHAIN},clang)
CXXFLAGS_STD = -std=c++11
CXXFLAGS_EARLY += -march=native -fPIC
CXXFLAGS_EARLY += -W -Wall -Wextra -Werror -pedantic
CXXFLAGS_EARLY += -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-maybe-uninitialized -Wno-unknown-warning-option
CXXFLAGS_EARLY += -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-maybe-uninitialized -Wno-unknown-warning-option -Wno-overloaded-virtual
endif
ifeq (${TOOLCHAIN},gcc)