diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-12-28 09:57:34 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-12-28 09:57:56 -0500 |
commit | 5adecf183bae2b47aa70dbc4b9fdcdd053c23f96 (patch) | |
tree | 07d2d6654ac09500c7e960f76efe65de97bd31a0 /gtk/gtktogglebutton.h | |
parent | 4d4b6a86581183bf82a67a51e7658cd3b1420a26 (diff) | |
download | gtk+-5adecf183bae2b47aa70dbc4b9fdcdd053c23f96.tar.gz |
Move single-include guards inside include guards
gcc has optimizations for include guards that only work
if they are outermost in the the header.
https://bugzilla.gnome.org/show_bug.cgi?id=689810
Diffstat (limited to 'gtk/gtktogglebutton.h')
-rw-r--r-- | gtk/gtktogglebutton.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktogglebutton.h b/gtk/gtktogglebutton.h index 3d6c5163b7..1183c9bfc2 100644 --- a/gtk/gtktogglebutton.h +++ b/gtk/gtktogglebutton.h @@ -22,14 +22,14 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ -#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) -#error "Only <gtk/gtk.h> can be included directly." -#endif - #ifndef __GTK_TOGGLE_BUTTON_H__ #define __GTK_TOGGLE_BUTTON_H__ +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#error "Only <gtk/gtk.h> can be included directly." +#endif + #include <gtk/gtkbutton.h> |