aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-11-14 08:42:25 +1100
committernyamatongwe <unknown>2011-11-14 08:42:25 +1100
commit82a36e852d6c45850f07d69aa87486851e53237c (patch)
treecbaaa622cc1ef6e306f072ea4edc596f6b6a7577
parent15760ec7cdc073d0c0b0abdf0c4e8bbcd41bba5a (diff)
downloadscintilla-mirror-82a36e852d6c45850f07d69aa87486851e53237c.tar.gz
Removed warning suppression that had been included for Visual C++ 6.0.
-rw-r--r--lexers/LexAsm.cxx4
-rw-r--r--lexers/LexBasic.cxx4
-rw-r--r--lexers/LexCPP.cxx4
-rw-r--r--lexers/LexD.cxx4
-rw-r--r--lexers/LexPerl.cxx4
-rw-r--r--lexers/LexSQL.cxx4
-rw-r--r--lexlib/PropSetSimple.cxx4
-rw-r--r--src/Indicator.cxx4
-rw-r--r--src/XPM.cxx4
-rw-r--r--win32/PlatWin.cxx4
10 files changed, 2 insertions, 38 deletions
diff --git a/lexers/LexAsm.cxx b/lexers/LexAsm.cxx
index 946d47a95..71e24bccf 100644
--- a/lexers/LexAsm.cxx
+++ b/lexers/LexAsm.cxx
@@ -16,10 +16,6 @@
#include <assert.h>
#include <ctype.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <string>
#include <map>
#include <set>
diff --git a/lexers/LexBasic.cxx b/lexers/LexBasic.cxx
index 55641edc1..b15ce0947 100644
--- a/lexers/LexBasic.cxx
+++ b/lexers/LexBasic.cxx
@@ -24,10 +24,6 @@
#include <assert.h>
#include <ctype.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <string>
#include <map>
diff --git a/lexers/LexCPP.cxx b/lexers/LexCPP.cxx
index 01ad43aea..1ad3a7081 100644
--- a/lexers/LexCPP.cxx
+++ b/lexers/LexCPP.cxx
@@ -13,10 +13,6 @@
#include <stdarg.h>
#include <assert.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <string>
#include <vector>
#include <map>
diff --git a/lexers/LexD.cxx b/lexers/LexD.cxx
index 5b8f9e723..eb76be3e4 100644
--- a/lexers/LexD.cxx
+++ b/lexers/LexD.cxx
@@ -14,10 +14,6 @@
#include <assert.h>
#include <ctype.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <string>
#include <map>
diff --git a/lexers/LexPerl.cxx b/lexers/LexPerl.cxx
index 8a0f6422e..87a06d43e 100644
--- a/lexers/LexPerl.cxx
+++ b/lexers/LexPerl.cxx
@@ -14,10 +14,6 @@
#include <assert.h>
#include <ctype.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <string>
#include <map>
diff --git a/lexers/LexSQL.cxx b/lexers/LexSQL.cxx
index 64a896ee4..60e8101d4 100644
--- a/lexers/LexSQL.cxx
+++ b/lexers/LexSQL.cxx
@@ -12,10 +12,6 @@
#include <assert.h>
#include <ctype.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <string>
#include <vector>
#include <map>
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>
diff --git a/src/Indicator.cxx b/src/Indicator.cxx
index dfa2a999c..9ea4024bb 100644
--- a/src/Indicator.cxx
+++ b/src/Indicator.cxx
@@ -8,10 +8,6 @@
#include <vector>
#include <map>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include "Platform.h"
#include "Scintilla.h"
diff --git a/src/XPM.cxx b/src/XPM.cxx
index cdaa69535..b63eb1550 100644
--- a/src/XPM.cxx
+++ b/src/XPM.cxx
@@ -8,10 +8,6 @@
#include <string.h>
#include <stdlib.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <vector>
#include <map>
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index a74f2c10a..29c9b13fe 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -13,10 +13,6 @@
#include <time.h>
#include <limits.h>
-#ifdef _MSC_VER
-#pragma warning(disable: 4786)
-#endif
-
#include <vector>
#include <map>