compat: Add GFlagsClass autopointer

It was added to GLib at the same time as GEnumClass. We did not list it
though and are now using it in a test.
This commit is contained in:
Benjamin Berg 2020-12-08 13:27:50 +01:00
parent 0688288c6d
commit 91fb8d8cb4
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@
#if !GLIB_CHECK_VERSION (2, 57, 0)
G_DEFINE_AUTOPTR_CLEANUP_FUNC (GTypeClass, g_type_class_unref);
G_DEFINE_AUTOPTR_CLEANUP_FUNC (GEnumClass, g_type_class_unref);
G_DEFINE_AUTOPTR_CLEANUP_FUNC (GFlagsClass, g_type_class_unref);
G_DEFINE_AUTOPTR_CLEANUP_FUNC (GParamSpec, g_param_spec_unref);
#else
/* Re-define G_SOURCE_FUNC as we are technically not allowed to use it with