diff options
author | Thomas Huth | 2020-07-08 20:19:44 +0200 |
---|---|---|
committer | Thomas Huth | 2020-07-13 11:40:52 +0200 |
commit | 7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e (patch) | |
tree | 094817ac7c6b449b2b763edcb4621491c9106215 /include/ui/gtk.h | |
parent | docs/devel/fuzzing: Fix bugs in documentation (diff) | |
download | qemu-7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e.tar.gz qemu-7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e.tar.xz qemu-7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e.zip |
Remove the CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE switch
GCC supports "#pragma GCC diagnostic" since version 4.6, and
Clang seems to support it, too, since its early versions 3.x.
That means that our minimum required compiler versions all support
this pragma already and we can remove the test from configure and
all the related #ifdefs in the code.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20200710045515.25986-1-thuth@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/ui/gtk.h')
-rw-r--r-- | include/ui/gtk.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ui/gtk.h b/include/ui/gtk.h index d1b230848a..eaeb450f91 100644 --- a/include/ui/gtk.h +++ b/include/ui/gtk.h @@ -1,15 +1,11 @@ #ifndef UI_GTK_H #define UI_GTK_H -#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE /* Work around an -Wstrict-prototypes warning in GTK headers */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstrict-prototypes" -#endif #include <gtk/gtk.h> -#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE #pragma GCC diagnostic pop -#endif #include <gdk/gdkkeysyms.h> |