diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-29 10:02:31 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-29 10:02:31 +1100 |
commit | 2ba73fb5102f510c93f69a9a4b34954227eddca6 (patch) | |
tree | 860904fbb0ca4ecd1a2bf6a61e29fe51cdac4bd7 /gtk/makefile | |
parent | 6c254c94360737545f2817740c87569e22cac0b1 (diff) | |
download | scintilla-mirror-2ba73fb5102f510c93f69a9a4b34954227eddca6.tar.gz |
Move suppression of Clang warning missing-braces from makefile to apply to
lexers but not most other files.
Diffstat (limited to 'gtk/makefile')
-rw-r--r-- | gtk/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile index f9ed251c1..dd030061d 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -13,7 +13,7 @@ srcdir ?= . ifdef CLANG CXX = clang++ -CXXWARNFLAGS = -Wall -pedantic -Wno-deprecated-register -Wno-missing-braces +CXXWARNFLAGS = -Wall -pedantic -Wno-deprecated-register CC = clang # Can choose aspect to sanitize: address and undefined can simply change SANITIZE but for # thread also need to create Position Independent Executable -> search online documentation |