From ccca45f1aba57d965bb28bfa0e19b1ac2cbc8f97 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 25 Oct 2013 11:48:02 +0100 Subject: [PATCH] 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 --- vapi/glib-2.0.vapi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (); -- 2.47.2