diff options
author | Neil <nyamatongwe@gmail.com> | 2016-11-05 15:04:09 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-11-05 15:04:09 +1100 |
commit | 1e36c7e89248cf5f9e4353673918e79cfcaeb857 (patch) | |
tree | cbac5d80a9bb74195dbee65c85db786ee515e7f4 /lexlib/LexerModule.h | |
parent | d489cd587b72a62eddc8da9b6e9ef56221bbd334 (diff) | |
download | scintilla-mirror-1e36c7e89248cf5f9e4353673918e79cfcaeb857.tar.gz |
StyleContext no longer needs mask argument.
Remove warning suppression pragma no longer needed for Perl's StyleContext.
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 356ff27e9..a561cf151 100644 --- a/lexlib/LexerModule.h +++ b/lexlib/LexerModule.h @@ -67,7 +67,7 @@ inline int Maximum(int a, int b) { // Shut up annoying Visual C++ warnings: #ifdef _MSC_VER -#pragma warning(disable: 4244 4309 4456 4457) +#pragma warning(disable: 4244 4456 4457) #endif // Turn off shadow warnings for lexers as may be maintained by others |