diff options
| author | Neil <nyamatongwe@gmail.com> | 2015-09-26 13:06:14 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2015-09-26 13:06:14 +1000 |
| commit | 6aa760caada43c3f7941d2fe750b9bc1cdf4debc (patch) | |
| tree | d1e1c30bfc36947484f408b1a5edff1b740312c9 | |
| parent | c89e08dc9ba69358ade935aa10f180ecbe168f52 (diff) | |
| download | scintilla-mirror-6aa760caada43c3f7941d2fe750b9bc1cdf4debc.tar.gz | |
RTTI is a part of standard C++ so don't turn it off.
| -rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 6aa0d6139..7d7d02789 100644 --- a/win32/makefile +++ b/win32/makefile @@ -31,7 +31,7 @@ ifneq "$(shell g++ -c CheckD2D.cxx 2>&1)" "" D2DFLAGS=-DDISABLE_D2D endif -CXXBASEFLAGS=--std=c++0x -Wall -pedantic $(INCLUDEDIRS) -fno-rtti $(D2DFLAGS) +CXXBASEFLAGS=--std=c++0x -Wall -pedantic $(INCLUDEDIRS) $(D2DFLAGS) ifdef CXX11_REGEX REFLAGS=-DCXX11_REGEX |
