aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-08-02 11:22:04 +1000
committerNeil <nyamatongwe@gmail.com>2014-08-02 11:22:04 +1000
commita1b83971505cd344976b56c57fd1e252c2bc9654 (patch)
tree715f02cecfe82f894480e35da79e7f2291b1aca1
parent96e2cda7a1dc5020904e4dd16f7752ff7360bb52 (diff)
downloadscintilla-mirror-a1b83971505cd344976b56c57fd1e252c2bc9654.tar.gz
Clang warns for register keyword used in system headers so turn off warning.
-rw-r--r--gtk/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile
index c4c5822e8..3c754f2e3 100644
--- a/gtk/makefile
+++ b/gtk/makefile
@@ -8,7 +8,7 @@
.SUFFIXES: .cxx .c .o .h .a
ifdef CLANG
-CXX = clang++
+CXX = clang++ -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