We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed590b7 commit 7b46448Copy full SHA for 7b46448
test/entt/core/concepts.cpp
@@ -16,6 +16,6 @@ TEST(Concepts, CVRefUnqualified) {
16
TEST(Concepts, AllocatorLike) {
17
ASSERT_FALSE(entt::allocator_like<int>);
18
ASSERT_TRUE(entt::allocator_like<std::allocator<int>>);
19
- ASSERT_TRUE(entt::allocator_like<std::allocator<void>>);
20
ASSERT_FALSE(entt::allocator_like<std::shared_ptr<int>>);
+ ASSERT_TRUE(entt::allocator_like<std::allocator<std::allocator<int>>>);
21
}
0 commit comments