diff options
author | Jasper St. Pierre <jstpierre@mecheye.net> | 2015-07-06 00:29:23 -0700 |
---|---|---|
committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2015-07-06 00:29:23 -0700 |
commit | 1545d4e6385dfdbe70c777ff98df862d0f9be026 (patch) | |
tree | 23aa337b1e9d3c1e0e63bf0e5d882bd495787865 /src | |
parent | a191554cf6dd5c400a09a4816ef9e60d439a400a (diff) | |
download | mutter-1545d4e6385dfdbe70c777ff98df862d0f9be026.tar.gz |
Put G_GNUC_CONST at the end of the declarations
These attributes go at the end, not the beginning.
Diffstat (limited to 'src')
-rw-r--r-- | src/meta/meta-shadow-factory.h | 3 | ||||
-rw-r--r-- | src/meta/meta-window-shape.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/meta/meta-shadow-factory.h b/src/meta/meta-shadow-factory.h index 2109c04ca..730faf4a2 100644 --- a/src/meta/meta-shadow-factory.h +++ b/src/meta/meta-shadow-factory.h @@ -27,8 +27,7 @@ #include <clutter/clutter.h> #include <meta/meta-window-shape.h> -G_GNUC_CONST -GType meta_shadow_get_type (void); +GType meta_shadow_get_type (void) G_GNUC_CONST; /** * MetaShadowParams: diff --git a/src/meta/meta-window-shape.h b/src/meta/meta-window-shape.h index ddf638a8d..b10adf082 100644 --- a/src/meta/meta-window-shape.h +++ b/src/meta/meta-window-shape.h @@ -26,8 +26,7 @@ #include <cairo.h> #include <glib-object.h> -G_GNUC_CONST -GType meta_window_shape_get_type (void); +GType meta_window_shape_get_type (void) G_GNUC_CONST; /** * MetaWindowShape: |