From cb3571edbd60e842edf3bf96479cd3dd9089ceb1 Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Mon, 29 Oct 2012 13:03:52 -0700 Subject: [PATCH] Add generic type arguments to HashSet constructor delegate parameters. --- gee/hashset.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gee/hashset.vala b/gee/hashset.vala index 07da4f7..e8c9f26 100644 --- a/gee/hashset.vala +++ b/gee/hashset.vala @@ -84,7 +84,7 @@ public class Gee.HashSet : AbstractSet { * @param hash_func an optional hash function * @param equal_func an optional equality testing function */ - public HashSet (owned HashDataFunc? hash_func = null, owned EqualDataFunc? equal_func = null) { + public HashSet (owned HashDataFunc? hash_func = null, owned EqualDataFunc? equal_func = null) { if (hash_func == null) { hash_func = Functions.get_hash_func_for (typeof (G)); } -- 2.7.4