enabled additional compiler errors

This commit is contained in:
2025-08-08 21:39:16 +03:00
parent f1a8a186e0
commit eb8bad55ee
4 changed files with 10 additions and 11 deletions

View File

@@ -6,8 +6,8 @@ CMP_C="gcc"
CMP_CPP="g++"
STD_C="c99"
STD_CPP="c++11"
WARN_C="-Wall -Wextra -Wno-unused-parameter"
WARN_CPP="-Wall -Wextra -Wno-unused-parameter"
WARN_C="-Wall -Wextra -Werror=return-type -Werror=pointer-arith -Wno-unused-parameter"
WARN_CPP="-Wall -Wextra -Werror=return-type -Werror=pointer-arith -Wno-unused-parameter"
SRC_C="$(find src -name '*.c')"
#SRC_CPP="$(find src -name '*.cpp')"