[test] Silence unused-variable erros in test

This commit is contained in:
Behdad Esfahbod 2021-11-19 12:03:10 -07:00
parent 394f772937
commit 5157cac0e2
1 changed files with 3 additions and 0 deletions

View File

@ -103,6 +103,9 @@ main (int argc, char **argv)
hb_hashmap_t<hb_bytes_t, int, nullptr_t, int, nullptr, 0> m1;
hb_hashmap_t<int, hb_bytes_t, int, nullptr_t, 0, nullptr> m2;
hb_hashmap_t<hb_bytes_t, hb_bytes_t, nullptr_t, nullptr_t, nullptr, nullptr> m3;
assert (m1.get_population () == 0);
assert (m2.get_population () == 0);
assert (m3.get_population () == 0);
}
return 0;