From 9fe3d34ae354d00f590a268e032b39022d62d184 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 30 Jan 2012 15:26:15 -0500 Subject: [PATCH] Move pragmas out of function body It seems that older gcc does not like pragmas inside functions. --- gio/gdesktopappinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gio/gdesktopappinfo.c b/gio/gdesktopappinfo.c index 955d007c8..5980c3f18 100644 --- a/gio/gdesktopappinfo.c +++ b/gio/gdesktopappinfo.c @@ -3378,12 +3378,12 @@ g_desktop_app_info_lookup_default_init (GDesktopAppInfoLookupInterface *iface) * * Deprecated: The #GDesktopAppInfoLookup interface is deprecated and unused by gio. */ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" GAppInfo * g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup, const char *uri_scheme) { -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wdeprecated-declarations" GDesktopAppInfoLookupIface *iface; g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL); @@ -3391,5 +3391,5 @@ g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *loo iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup); return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme); -#pragma GCC diagnostic pop } +#pragma GCC diagnostic pop