aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/LexerModule.h
diff options
context:
space:
mode:
authorNeil <devnull@localhost>2014-07-23 12:57:02 +1000
committerNeil <devnull@localhost>2014-07-23 12:57:02 +1000
commit3da0bc57839e659c5078f59a8c6a6562712d3cdb (patch)
treeaaf741258da68a37e087c585a9bf515d965712d0 /lexlib/LexerModule.h
parentbc2d85387b5c7a281d88b474e5f940be5ece7ff0 (diff)
downloadscintilla-mirror-3da0bc57839e659c5078f59a8c6a6562712d3cdb.tar.gz
Avoid shadowed names mostly in method prototypes. Turn off shadow
warnings for lexers since they may be maintained by others.
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 ee092e68f..675e2a700 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)
+#pragma warning(disable: 4244 4309 4456 4457)
#endif
#ifdef SCI_NAMESPACE