From 372446c1d25ee851d9fa01d4c9495dd3530f513b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 24 Apr 2024 15:04:55 +0800 Subject: [PATCH] Update build_with_warnings.sh --- build_with_warnings.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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