diff options
author | Neil <nyamatongwe@gmail.com> | 2022-09-15 08:36:32 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-09-15 08:36:32 +1000 |
commit | b1695891dfada286943ff9da370908ba7f3cd68d (patch) | |
tree | b978064ae94efca68da82eea4d37ef78de0bcae2 /win32 | |
parent | 961485da6a188f9f70b4bfe92d298c7b645e06fb (diff) | |
download | scintilla-mirror-b1695891dfada286943ff9da370908ba7f3cd68d.tar.gz |
Enable extra warnings with g++ on Win32.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 5c17641ef..e0f363653 100644 --- a/win32/makefile +++ b/win32/makefile @@ -15,7 +15,7 @@ DIR_BIN=../bin COMPONENT = $(DIR_BIN)/Scintilla.dll LIBSCI = $(DIR_BIN)/libscintilla.a -WARNINGS = -Wpedantic -Wall +WARNINGS = -Wpedantic -Wall -Wextra ifdef CLANG CXX = clang++ |