mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-14 11:38:05 +02:00
Revert use of the system_header GCC pragma
This reverts commit 662bf991c08b16dea8a36026243b311f6cdb17f1. It is not a straight up revert because the old commit involved various long since removed ChangeLog files and we'd end up mudding the patch. The system_header GCC pragma is breaking warnings in the various g_return_* macros; GCC stopped warning when using a macro with a return value in a function that returns void, as well as when using a macro with no return value in a function that has a non-void return value. Suppressing this kind of warnings is not a good idea. Other compilers are unaffected, even ones like Clang with a GCC compatibility layer. Given the fact that the original commit was added 14 years ago as a workaround in the old days of GTK+ 1.2, I think it's safe to drop it. https://bugzilla.gnome.org/show_bug.cgi?id=753310
This commit is contained in:
parent
d488d75909
commit
ab26dd5433
@ -33,12 +33,6 @@
|
||||
#include <glib/gtypes.h>
|
||||
#include <glib/gmacros.h>
|
||||
|
||||
/* Suppress warnings when GCC is in -pedantic mode and not -std=c99
|
||||
*/
|
||||
#if (__GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96))
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/* calculate a string size, guaranteed to fit format + args.
|
||||
|
Loading…
x
Reference in New Issue
Block a user