Skip to content

Commit 7b46448

Browse files
committed
test: please older compilers (like g++13)
1 parent ed590b7 commit 7b46448

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/entt/core/concepts.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ TEST(Concepts, CVRefUnqualified) {
1616
TEST(Concepts, AllocatorLike) {
1717
ASSERT_FALSE(entt::allocator_like<int>);
1818
ASSERT_TRUE(entt::allocator_like<std::allocator<int>>);
19-
ASSERT_TRUE(entt::allocator_like<std::allocator<void>>);
2019
ASSERT_FALSE(entt::allocator_like<std::shared_ptr<int>>);
20+
ASSERT_TRUE(entt::allocator_like<std::allocator<std::allocator<int>>>);
2121
}

0 commit comments

Comments
 (0)