From: Christian Hergert Date: Sun, 28 Jun 2015 05:41:13 +0000 (-0700) Subject: gtypemodule: use G_GNUC_UNUSED in G_DEFINE_DYNAMIC_TYPE_EXTENDED X-Git-Tag: 2.45.4~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb86c222cce2436d6a213e574fbba159b6f34010;p=platform%2Fupstream%2Fglib.git gtypemodule: use G_GNUC_UNUSED in G_DEFINE_DYNAMIC_TYPE_EXTENDED We already do this in the normal case, might as well support it for the dynamic type module case as well. This prevents seeing a warning when not using the get_instance_private() in the dynamic type. --- diff --git a/gobject/gtypemodule.h b/gobject/gtypemodule.h index 9c63bac..3ef0e84 100644 --- a/gobject/gtypemodule.h +++ b/gobject/gtypemodule.h @@ -182,6 +182,7 @@ static gint TypeName##_private_offset; \ \ _G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \ \ +G_GNUC_UNUSED \ static inline gpointer \ type_name##_get_instance_private (TypeName *self) \ { \