diff options
author | Neil <unknown> | 2014-07-23 12:57:02 +1000 |
---|---|---|
committer | Neil <unknown> | 2014-07-23 12:57:02 +1000 |
commit | fcdd797b0edfda0e6bbc89f7848c32094efe6669 (patch) | |
tree | ccfc7faecafdf9dc71e18e0cee67f3be36e43516 /lexlib/LexerModule.h | |
parent | fcf7dc58d3dad7efabdcf503512b0729960d5d1a (diff) | |
download | scintilla-mirror-fcdd797b0edfda0e6bbc89f7848c32094efe6669.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.h | 2 |
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 |