diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-12-27 23:43:14 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-12-27 23:43:14 -0500 |
commit | e1b99b2ddcf21f5dab26ad74afa6935eaf70028e (patch) | |
tree | 100335f4c2ef9e04d58964389985b8f71a98b58a /gio/gseekable.h | |
parent | 89d48d7800a21db1b94c09644bc68b84cda1940b (diff) | |
download | glib-e1b99b2ddcf21f5dab26ad74afa6935eaf70028e.tar.gz glib-e1b99b2ddcf21f5dab26ad74afa6935eaf70028e.tar.bz2 glib-e1b99b2ddcf21f5dab26ad74afa6935eaf70028e.zip |
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 'gio/gseekable.h')
-rw-r--r-- | gio/gseekable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/gseekable.h b/gio/gseekable.h index ba51eea5d..95df99d4a 100644 --- a/gio/gseekable.h +++ b/gio/gseekable.h @@ -20,13 +20,13 @@ * Author: Alexander Larsson <alexl@redhat.com> */ +#ifndef __G_SEEKABLE_H__ +#define __G_SEEKABLE_H__ + #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) #error "Only <gio/gio.h> can be included directly." #endif -#ifndef __G_SEEKABLE_H__ -#define __G_SEEKABLE_H__ - #include <gio/giotypes.h> G_BEGIN_DECLS |