From de7fdced7fadeaff2f937c0296f74387bfab49b8 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Tue, 13 Aug 2024 04:19:22 +0200 Subject: [PATCH] gobjectnotifyqueue: Add G_GNUC_UNUSED in unused parameters --- gobject/gobjectnotifyqueue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gobject/gobjectnotifyqueue.c b/gobject/gobjectnotifyqueue.c index 6ed6f51ad..26c8f3bad 100644 --- a/gobject/gobjectnotifyqueue.c +++ b/gobject/gobjectnotifyqueue.c @@ -140,7 +140,7 @@ g_object_notify_queue_thaw (GObject *object, } static inline void -g_object_notify_queue_clear (GObject *object, +g_object_notify_queue_clear (GObject *object G_GNUC_UNUSED, GObjectNotifyQueue *nqueue) { g_return_if_fail (nqueue->freeze_count > 0); @@ -155,7 +155,7 @@ g_object_notify_queue_clear (GObject *object, } static inline void -g_object_notify_queue_add (GObject *object, +g_object_notify_queue_add (GObject *object G_GNUC_UNUSED, GObjectNotifyQueue *nqueue, GParamSpec *pspec) {