diff options
author | 2023-05-01 02:37:28 +1000 | |
---|---|---|
committer | 2023-05-01 02:37:28 +1000 | |
commit | c649fa82fdac71f6f625080a5bee78171ba449b9 (patch) | |
tree | ee186a1fc1aff159b6550343094b672a6e8b4bda /scripts/genie.lua | |
parent | 95fc84a22cce5d4a6570dee9631f99ec17904fba (diff) |
ui: Don't use facets of destructed locales.
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 8b05e60bb56..727be423d2a 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -1106,11 +1106,11 @@ end end if version >= 130000 then buildoptions_c { - "-Wno-dangling-pointer", + "-Wno-error=dangling-pointer", } buildoptions_cpp { - "-Wno-dangling-reference", - "-Wno-dangling-pointer", + "-Wno-error=dangling-reference", + "-Wno-error=dangling-pointer", "-Wno-xor-used-as-pow", } end |