summaryrefslogtreecommitdiff
path: root/src/SortedList.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/SortedList.vala')
-rw-r--r--src/SortedList.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SortedList.vala b/src/SortedList.vala
index 20e6771..420190d 100644
--- a/src/SortedList.vala
+++ b/src/SortedList.vala
@@ -142,7 +142,7 @@ public class SortedList<G> : Object, Gee.Traversable<G>, Gee.Iterable<G>, Gee.Co
return list.get(index);
}
- private int binary_search(G search, EqualFunc? equal_func) {
+ private int binary_search(G search, EqualFunc<G>? equal_func) {
assert(cmp != null);
int min = 0;
@@ -181,7 +181,7 @@ public class SortedList<G> : Object, Gee.Traversable<G>, Gee.Iterable<G>, Gee.Co
}
// See notes at index_of for the difference between this method and it.
- public int locate(G search, bool altered, EqualFunc equal_func = direct_equal) {
+ public int locate(G search, bool altered, EqualFunc<G> equal_func = direct_equal) {
if (cmp == null || altered) {
int count = list.size;
for (int ctr = 0; ctr < count; ctr++) {