diff --git a/build_with_warnings.sh b/build_with_warnings.sh index a8181662..f2d5022f 100644 --- a/build_with_warnings.sh +++ b/build_with_warnings.sh @@ -1,5 +1,5 @@ SRC=$(find src/ -name "*.cpp") -FLAGS="-std=c++17 -O1 -stdlib=libc++ -Iinclude -frtti -W -Wno-unused-parameter" +FLAGS="-std=c++17 -O1 -stdlib=libc++ -Iinclude -frtti -W -Wno-unused-parameter -Wno-sign-compare" clang++ $FLAGS -o main -O1 src2/main.cpp $SRC