Skip to content

Commit 68f7a15

Browse files
committed
Fix gcc compilation
1 parent 28ac707 commit 68f7a15

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/hashmap/hashmap_remove.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ namespace hud_test
88
using super = hud_test::non_bitwise_type;
99
using super::super;
1010

11-
constexpr ~collided_key() noexcept = default;
11+
virtual constexpr ~collided_key() noexcept
12+
{
13+
super::~super();
14+
}
1215
};
1316
} // namespace hud_test
1417

0 commit comments

Comments
 (0)