summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2024-08-26 12:33:19 +0200
committerPedro J. Estébanez <pedrojrulez@gmail.com>2024-08-26 13:13:29 +0200
commit9cbc3f14198c30c14315cabf72b0e3e3438b2f61 (patch)
tree9e379218dedabe21baffdd7da9f771b6fe1121c0 /SConstruct
parente53dc80f2f9e0f5dd03103fe968662f7ffd258ba (diff)
downloadredot-engine-9cbc3f14198c30c14315cabf72b0e3e3438b2f61.tar.gz
Change warning muting so it affects all levels, but locally
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 569ee24d85..94574aacb2 100644
--- a/SConstruct
+++ b/SConstruct
@@ -861,7 +861,7 @@ else: # GCC, Clang
if cc_version_major >= 11: # Broke on MethodBind templates before GCC 11.
env.Append(CCFLAGS=["-Wlogical-op"])
elif methods.using_clang(env) or methods.using_emcc(env):
- env.Append(CCFLAGS=["-Wimplicit-fallthrough", "-Wno-undefined-var-template"])
+ env.Append(CCFLAGS=["-Wimplicit-fallthrough"])
elif env["warnings"] == "all":
env.Append(CCFLAGS=["-Wall"] + common_warnings)
elif env["warnings"] == "moderate":