aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/makefile
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-12-29 10:02:31 +1100
committerNeil <nyamatongwe@gmail.com>2019-12-29 10:02:31 +1100
commit179306d57fcc813b18205a916f1cd448be610ded (patch)
treea4b2c15a351163d31cc9de5adbc50330bfee7ab3 /gtk/makefile
parenta0d074425813daed19550b909275fd68f43975cf (diff)
downloadscintilla-mirror-179306d57fcc813b18205a916f1cd448be610ded.tar.gz
Backport: Move suppression of Clang warning missing-braces from makefile to apply to
lexers but not most other files. Backport of changeset 7845:f3264e486266.
Diffstat (limited to 'gtk/makefile')
-rw-r--r--gtk/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile
index cc9e918b2..83564bc9d 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