summaryrefslogtreecommitdiff
path: root/gee/hashset.vala
diff options
context:
space:
mode:
Diffstat (limited to 'gee/hashset.vala')
-rw-r--r--gee/hashset.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/gee/hashset.vala b/gee/hashset.vala
index 076f8c5..230f564 100644
--- a/gee/hashset.vala
+++ b/gee/hashset.vala
@@ -222,7 +222,7 @@ public class Gee.HashSet<G> : AbstractSet<G> {
/**
* {@inheritDoc}
*/
- public override bool foreach (ForallFunc f) {
+ public override bool foreach (ForallFunc<G> f) {
for (int i = 0; i < _array_size; i++) {
for (unowned Node<G>? current = _nodes[i]; current != null; current = current.next) {
if (!f (current.key)) {