diff options
author | nyamatongwe <devnull@localhost> | 2004-05-11 13:20:56 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-05-11 13:20:56 +0000 |
commit | d7ab3160e022ff3a7b6822dfe126284769a69b7f (patch) | |
tree | 60b8641b89360acba36249f614284a811c9e70dc | |
parent | d10786ef4ba26950119184b0d6c6671316b49425 (diff) | |
download | scintilla-mirror-d7ab3160e022ff3a7b6822dfe126284769a69b7f.tar.gz |
Inhibit warnings from using char as index.
-rw-r--r-- | gtk/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile index 86916f571..2e0e27f21 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -23,7 +23,7 @@ vpath %.h ../src ../include vpath %.cxx ../src INCLUDEDIRS=-I ../include -I ../src -CXXBASEFLAGS=-W -Wall -DGTK -DSCI_LEXER $(INCLUDEDIRS) +CXXBASEFLAGS=-W -Wall -Wno-char-subscripts -DGTK -DSCI_LEXER $(INCLUDEDIRS) ifdef NOTHREADS THREADFLAGS=-DG_THREADS_IMPL_NONE |