diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2023-02-05 19:33:15 +0100 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2023-02-05 20:05:30 +0100 |
commit | fe1633c15bc5a572ba45b59c7612a3eb352503f2 (patch) | |
tree | c801ffc69c11fb20cecf9bf31c25bbdb4118f57d /tests/objects/interface-async-captured-generic.c-expected | |
parent | 6121633021de361e8769ea53fc68ac812b731eb4 (diff) | |
download | vala-fe1633c15bc5a572ba45b59c7612a3eb352503f2.tar.gz |
codegen: Cast return value of generic type accessor functions
Found by -Wincompatible-function-pointer-types
See https://gitlab.gnome.org/GNOME/vala/issues/1408
Diffstat (limited to 'tests/objects/interface-async-captured-generic.c-expected')
-rw-r--r-- | tests/objects/interface-async-captured-generic.c-expected | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/objects/interface-async-captured-generic.c-expected b/tests/objects/interface-async-captured-generic.c-expected index ed43ffed9..ece032b76 100644 --- a/tests/objects/interface-async-captured-generic.c-expected +++ b/tests/objects/interface-async-captured-generic.c-expected @@ -223,19 +223,19 @@ foo_class_init (FooClass * klass, static GType foo_ifoo_get_g_type (Foo* self) { - return G_TYPE_STRING; + return (GType) G_TYPE_STRING; } static GBoxedCopyFunc foo_ifoo_get_g_dup_func (Foo* self) { - return g_strdup; + return (GBoxedCopyFunc) g_strdup; } static GDestroyNotify foo_ifoo_get_g_destroy_func (Foo* self) { - return g_free; + return (GDestroyNotify) g_free; } static void |