diff options
author | nyamatongwe <devnull@localhost> | 2011-11-14 08:42:25 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-11-14 08:42:25 +1100 |
commit | b528166ba492b12be6779e7f0c77586e35778204 (patch) | |
tree | 1acf8aa5bfa2dd3c6e7e6c6cf28e57267f33181f /lexlib/PropSetSimple.cxx | |
parent | a3c9750142a146639e61aba2ea50a53a8c5c3dae (diff) | |
download | scintilla-mirror-b528166ba492b12be6779e7f0c77586e35778204.tar.gz |
Removed warning suppression that had been included for Visual C++ 6.0.
Diffstat (limited to 'lexlib/PropSetSimple.cxx')
-rw-r--r-- | lexlib/PropSetSimple.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexlib/PropSetSimple.cxx b/lexlib/PropSetSimple.cxx index ce2031f8d..c0ec59459 100644 --- a/lexlib/PropSetSimple.cxx +++ b/lexlib/PropSetSimple.cxx @@ -12,8 +12,8 @@ #include <stdio.h> #ifdef _MSC_VER -// Visual C++ doesn't like unreachable code or long decorated names in its own headers. -#pragma warning(disable: 4018 4100 4245 4511 4512 4663 4702 4786) +// Visual C++ doesn't like unreachable code in its own headers. +#pragma warning(disable: 4018 4100 4245 4511 4512 4663 4702) #endif #include <string> |