Explorar o código

test: please older compilers (like g++13)

skypjack hai 3 semanas
pai
achega
7b46448cd9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      test/entt/core/concepts.cpp

+ 1 - 1
test/entt/core/concepts.cpp

@@ -16,6 +16,6 @@ TEST(Concepts, CVRefUnqualified) {
 TEST(Concepts, AllocatorLike) {
 TEST(Concepts, AllocatorLike) {
     ASSERT_FALSE(entt::allocator_like<int>);
     ASSERT_FALSE(entt::allocator_like<int>);
     ASSERT_TRUE(entt::allocator_like<std::allocator<int>>);
     ASSERT_TRUE(entt::allocator_like<std::allocator<int>>);
-    ASSERT_TRUE(entt::allocator_like<std::allocator<void>>);
     ASSERT_FALSE(entt::allocator_like<std::shared_ptr<int>>);
     ASSERT_FALSE(entt::allocator_like<std::shared_ptr<int>>);
+    ASSERT_TRUE(entt::allocator_like<std::allocator<std::allocator<int>>>);
 }
 }