diff options
author | Neil <nyamatongwe@gmail.com> | 2016-11-07 11:23:03 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-11-07 11:23:03 +1100 |
commit | 9bf7657055ac7868b15b1c9d59ecdb3cb52fbd1d (patch) | |
tree | 88cd280578726dcae50fc13fb40cc44804c933b2 | |
parent | 07793d0c5a4ffb2c78637109dde2b922af6255da (diff) | |
download | scintilla-mirror-9bf7657055ac7868b15b1c9d59ecdb3cb52fbd1d.tar.gz |
Remove warning suppressions for a version of Clang from 4 years ago.
-rw-r--r-- | gtk/PlatGTK.cxx | 5 | ||||
-rw-r--r-- | gtk/ScintillaGTK.cxx | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 3b96418be..055a318a4 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -28,11 +28,6 @@ #include "XPM.h" #include "UniConversion.h" -#if defined(__clang__) -// Clang 3.0 incorrectly displays sentinel warnings. Fixed by clang 3.1. -#pragma GCC diagnostic ignored "-Wsentinel" -#endif - #include "Converter.h" static const double kPi = 3.14159265358979323846; diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 32c541cc7..c57f74df2 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -78,11 +78,6 @@ #include "Converter.h" -#if defined(__clang__) -// Clang 3.0 incorrectly displays sentinel warnings. Fixed by clang 3.1. -#pragma GCC diagnostic ignored "-Wsentinel" -#endif - #if GTK_CHECK_VERSION(2,20,0) #define IS_WIDGET_REALIZED(w) (gtk_widget_get_realized(GTK_WIDGET(w))) #define IS_WIDGET_MAPPED(w) (gtk_widget_get_mapped(GTK_WIDGET(w))) |