From 5adecf183bae2b47aa70dbc4b9fdcdd053c23f96 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Dec 2012 09:57:34 -0500 Subject: 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 --- gtk/gtkpapersize.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gtk/gtkpapersize.h') diff --git a/gtk/gtkpapersize.h b/gtk/gtkpapersize.h index f3cfa6ed92..f7cf20da5e 100644 --- a/gtk/gtkpapersize.h +++ b/gtk/gtkpapersize.h @@ -16,14 +16,14 @@ * License along with this library. If not, see . */ -#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) -#error "Only can be included directly." -#endif - #ifndef __GTK_PAPER_SIZE_H__ #define __GTK_PAPER_SIZE_H__ +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#error "Only can be included directly." +#endif + #include -- cgit v1.2.1