summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2021-07-09 09:14:42 -0700
committer Aaron Giles <aaron@aarongiles.com>2021-07-09 09:14:42 -0700
commit03d18776802c08f3487712974746e8e21b4ce19e (patch)
tree6113f412fb50dc48f96aa0e131dd85914af0ecda
parenteccd02ff9e841a2d2a82f240b7dce932bf59a6cd (diff)
Disable another MSVC warning that is known to be noisy (and which showed up with the recent setjmp workaround).
-rw-r--r--scripts/genie.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index 833cb6e3712..173b0eee78e 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -1382,6 +1382,7 @@ end
"/wd4457", -- warning C4457: declaration of 'xxx' hides function parameter
"/wd4458", -- warning C4458: declaration of 'xxx' hides class member
"/wd4459", -- warning C4459: declaration of 'xxx' hides global declaration
+ "/wd4611", -- warning C4611: interaction between '_setjmp' and C++ object destruction is non-portable
"/wd4702", -- warning C4702: unreachable code
"/wd4706", -- warning C4706: assignment within conditional expression
"/wd4804", -- warning C4804: '>>': unsafe use of type 'bool' in operation