diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-26 10:51:25 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-26 10:51:25 +0200 |
commit | 0ba0be27c71c0fe91e28555ecffe30326af644c1 (patch) | |
tree | ccd290d6b46e2c0d4df3294346f9e49e0a8b2af9 /SConstruct | |
parent | 04f6321ecc2d24d08cb3368d87f483c6cc308105 (diff) | |
parent | f4d76853b9d921e3645295f9bebc39eb73661e67 (diff) | |
download | redot-engine-0ba0be27c71c0fe91e28555ecffe30326af644c1.tar.gz |
Merge pull request #94169 from RandomShaper/wtp_rl_prize
Batch of fixes for `WorkerThreadPool` and `ResourceLoader`
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 94574aacb2..569ee24d85 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"]) + env.Append(CCFLAGS=["-Wimplicit-fallthrough", "-Wno-undefined-var-template"]) elif env["warnings"] == "all": env.Append(CCFLAGS=["-Wall"] + common_warnings) elif env["warnings"] == "moderate": |