commit | 570473a345a73ab05ea8e8acf88cfba9b90a81a4 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Thu Dec 27 13:29:51 2018 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Sun Jan 20 20:12:12 2019 -0500 |
tree | a3e079259f5044bce041ac5e3a1af8dc68c8da6a | |
parent | d6024794fb072647d8233b184c25da5def26c435 [diff] [blame] |
[iter] Make hb_sorted_array_t work as iter Ugly, but does the job.
diff --git a/src/test-iter.cc b/src/test-iter.cc index 3fdf4df..2e8c408 100644 --- a/src/test-iter.cc +++ b/src/test-iter.cc
@@ -109,6 +109,8 @@ test_iterable (v); hb_set_t st; test_iterable (st); + hb_sorted_array_t<int> sa; + test_iterable (sa); return 0; }