diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-07-12 23:02:08 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-07-12 23:15:41 -0400 |
commit | 611fd8cb72af45f470d20673d4102dcab56e3747 (patch) | |
tree | e9961944fac1d257e0b61817690486b4951a7166 | |
parent | f10f76d95db3248ffb11d2b97b0cdd317b0b5e73 (diff) |
Disable "misleading indentation" warning on GCC
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 9496595a26..ef74ce7736 100644 --- a/SConstruct +++ b/SConstruct @@ -455,6 +455,7 @@ if selected_platform in platform_list: all_plus_warnings = ["-Wwrite-strings"] if methods.using_gcc(env): + env.Append(CCFLAGS=["-Wno-misleading-indentation"]) if cc_version_major >= 7: shadow_local_warning = ["-Wshadow-local"] |