From: Philip Withnall Date: Fri, 25 Oct 2013 10:48:02 +0000 (+0100) Subject: glib-2.0: Fix type of g_hash_table_iter_next() parameters to always be gpointer X-Git-Tag: 0.22.1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccca45f1aba57d965bb28bfa0e19b1ac2cbc8f97;p=thirdparty%2Fvala.git glib-2.0: Fix type of g_hash_table_iter_next() parameters to always be gpointer https://bugzilla.gnome.org/show_bug.cgi?id=710868 --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 50373c97b..915eb6811 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -4068,7 +4068,7 @@ namespace GLib { public struct HashTableIter { public HashTableIter (GLib.HashTable table); - public bool next (out unowned K key, out unowned V value); + public bool next ([CCode (type = "gpointer*")] out unowned K key, [CCode (type = "gpointer*")] out unowned V value); public void remove (); public void steal (); public unowned GLib.HashTable get_hash_table ();