Przeglądaj źródła

test: minor changes

Michele Caini 3 lat temu
rodzic
commit
314c189c49
2 zmienionych plików z 1 dodań i 3 usunięć
  1. 1 0
      test/entt/core/any.cpp
  2. 0 3
      test/entt/entity/storage.cpp

+ 1 - 0
test/entt/core/any.cpp

@@ -54,6 +54,7 @@ struct not_copyable {
 
 struct not_movable {
     not_movable() = default;
+
     not_movable(const not_movable &) = default;
     not_movable(not_movable &&) = delete;
 

+ 0 - 3
test/entt/entity/storage.cpp

@@ -74,9 +74,6 @@ struct create_from_constructor {
         }
     }
 
-    create_from_constructor(create_from_constructor &&other) noexcept = default;
-    create_from_constructor &operator=(create_from_constructor &&other) noexcept = default;
-
     entt::entity child;
 };