blueloveTH 2 лет назад
Родитель
Сommit
372446c1d2
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      build_with_warnings.sh

+ 1 - 1
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