diff options
author | Neil <nyamatongwe@gmail.com> | 2014-04-29 11:55:23 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-04-29 11:55:23 +1000 |
commit | 928306bf07dace37ace9eb053b87599ee47145e8 (patch) | |
tree | 65b640128f07310b24b9c52c4250848a35dac7a5 /lexlib/LexerModule.h | |
parent | ca404c02432f1ab90f235eb452168d35e6f14936 (diff) | |
download | scintilla-mirror-928306bf07dace37ace9eb053b87599ee47145e8.tar.gz |
Stop disabling warnings where no longer needed.
Diffstat (limited to 'lexlib/LexerModule.h')
-rw-r--r-- | lexlib/LexerModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlib/LexerModule.h b/lexlib/LexerModule.h index e502541b2..35fa30c69 100644 --- a/lexlib/LexerModule.h +++ b/lexlib/LexerModule.h @@ -72,7 +72,7 @@ inline int Maximum(int a, int b) { // Shut up annoying Visual C++ warnings: #ifdef _MSC_VER -#pragma warning(disable: 4244 4309 4514 4710) +#pragma warning(disable: 4244 4309) #endif #ifdef SCI_NAMESPACE |