diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-13 14:19:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 14:19:25 +0200 |
commit | 5ce3160f3f4de84760a119a4a9b132589cd77316 (patch) | |
tree | 0a9cd3e3587e78826e55808a622c68c17dfde1db | |
parent | 19c420545d4ea4e097f69fd76e5e121819d35873 (diff) | |
parent | 611fd8cb72af45f470d20673d4102dcab56e3747 (diff) |
Merge pull request #40332 from aaronfranke/no-misleading
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"] |