aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2020-07-08 20:19:44 +0200
committerThomas Huth <thuth@redhat.com>2020-07-13 11:40:52 +0200
commit7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e (patch)
tree094817ac7c6b449b2b763edcb4621491c9106215 /ui
parent590246ead7e5628e9e365c88aeb1ff3eab24de0d (diff)
downloadqemu-7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e.zip
qemu-7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e.tar.gz
qemu-7aa12aa215e12ab2d41c60ba57e82d3e2af9f38e.tar.bz2
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 'ui')
-rw-r--r--ui/gtk.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/gtk.c b/ui/gtk.c
index d4b49bd..b0cc08a 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -1996,14 +1996,10 @@ static GSList *gd_vc_gfx_init(GtkDisplayState *s, VirtualConsole *vc,
* proper replacement (native opengl support) is only
* available in 3.16+. Silence the warning if possible.
*/
-#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
-#endif
gtk_widget_set_double_buffered(vc->gfx.drawing_area, FALSE);
-#ifdef CONFIG_PRAGMA_DIAGNOSTIC_AVAILABLE
#pragma GCC diagnostic pop
-#endif
vc->gfx.dcl.ops = &dcl_egl_ops;
}
} else