aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/LexerModule.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2016-11-05 15:04:09 +1100
committerNeil <nyamatongwe@gmail.com>2016-11-05 15:04:09 +1100
commit1e36c7e89248cf5f9e4353673918e79cfcaeb857 (patch)
treecbac5d80a9bb74195dbee65c85db786ee515e7f4 /lexlib/LexerModule.h
parentd489cd587b72a62eddc8da9b6e9ef56221bbd334 (diff)
downloadscintilla-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.h2
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