Quellcode durchsuchen

test: drop unused type

Michele Caini vor 2 Jahren
Ursprung
Commit
08474c671b
1 geänderte Dateien mit 7 neuen und 9 gelöschten Zeilen
  1. 7 9
      test/entt/entity/storage.cpp

+ 7 - 9
test/entt/entity/storage.cpp

@@ -508,7 +508,7 @@ ENTT_DEBUG_TEST(BasicStorageDeathTest, Getters) {
     ASSERT_DEATH([[maybe_unused]] const auto value = std::as_const(pool).get_as_tuple(entt::entity{41}), "");
     ASSERT_DEATH([[maybe_unused]] const auto value = std::as_const(pool).get_as_tuple(entt::entity{41}), "");
 }
 }
 
 
-// <<<<<<<<<<<< REWORK IN PROGRESS [basic] <<<<<<<<<<<<
+// <<<<<<<<<<<< REWORK IN PROGRESS [basic/TODO] <<<<<<<<<<<<
 
 
 TEST(EmptyType, Constructors) {
 TEST(EmptyType, Constructors) {
     entt::storage<empty_type> pool;
     entt::storage<empty_type> pool;
@@ -849,7 +849,7 @@ TEST(EmptyType, IterableIteratorConversion) {
     ASSERT_NE(++cit, it);
     ASSERT_NE(++cit, it);
 }
 }
 
 
-// <<<<<<<<<<<< REWORK IN PROGRESS [empty] <<<<<<<<<<<<
+// <<<<<<<<<<<< REWORK IN PROGRESS [empty/DONE] <<<<<<<<<<<<
 
 
 TEST(Void, Constructors) {
 TEST(Void, Constructors) {
     entt::storage<void> pool;
     entt::storage<void> pool;
@@ -865,7 +865,7 @@ TEST(Void, Constructors) {
     ASSERT_EQ(pool.type(), entt::type_id<void>());
     ASSERT_EQ(pool.type(), entt::type_id<void>());
 }
 }
 
 
-// <<<<<<<<<<<< REWORK IN PROGRESS [void] <<<<<<<<<<<<
+// <<<<<<<<<<<< REWORK IN PROGRESS [void/TODO] <<<<<<<<<<<<
 
 
 TEST(PointerStability, Constructors) {
 TEST(PointerStability, Constructors) {
     entt::storage<pointer_stability> pool;
     entt::storage<pointer_stability> pool;
@@ -881,7 +881,7 @@ TEST(PointerStability, Constructors) {
     ASSERT_EQ(pool.type(), entt::type_id<pointer_stability>());
     ASSERT_EQ(pool.type(), entt::type_id<pointer_stability>());
 }
 }
 
 
-// <<<<<<<<<<<< REWORK IN PROGRESS [stable] <<<<<<<<<<<<
+// <<<<<<<<<<<< REWORK IN PROGRESS [stable/TODO] <<<<<<<<<<<<
 
 
 TEST(Entity, Constructors) {
 TEST(Entity, Constructors) {
     entt::storage<entt::entity> pool;
     entt::storage<entt::entity> pool;
@@ -897,16 +897,14 @@ TEST(Entity, Constructors) {
     ASSERT_EQ(pool.type(), entt::type_id<entt::entity>());
     ASSERT_EQ(pool.type(), entt::type_id<entt::entity>());
 }
 }
 
 
-// <<<<<<<<<<<< REWORK IN PROGRESS [entity] <<<<<<<<<<<<
+// <<<<<<<<<<<< REWORK IN PROGRESS [entity/TODO] <<<<<<<<<<<<
+
+// <<<<<<<<<<<< REWORK IN PROGRESS [non-copyable/non-movable/whatever/TODO] <<<<<<<<<<<<
 
 
 struct pinned_type {
 struct pinned_type {
     const int value{42};
     const int value{42};
 };
 };
 
 
-struct empty_stable_type {
-    static constexpr auto in_place_delete = true;
-};
-
 struct boxed_int {
 struct boxed_int {
     int value;
     int value;
 };
 };