Skip to content

Commit

Permalink
Fix (well, ignore) warning about generic type in ArrayTest testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
jwharm committed Dec 7, 2024
1 parent 9fb6902 commit de51d19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ArrayTest {
@Test
void testArray() {
try (var arena = Arena.ofConfined()) {
HashTable table = HashTable.new_(GLib::strHash, GLib::strEqual);
var table = HashTable.new_(GLib::strHash, GLib::strEqual);
for (int i = 0; i < 3; i++)
table.insert(
Interop.allocateNativeString("key" + i, arena),
Expand Down

0 comments on commit de51d19

Please sign in to comment.