소스 검색

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

skypjack 3 주 전
부모
커밋
7b46448cd9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {
     ASSERT_FALSE(entt::allocator_like<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_TRUE(entt::allocator_like<std::allocator<std::allocator<int>>>);
 }