diff --git a/test/entt/core/any.cpp b/test/entt/core/any.cpp index c387bf864..2c091db5b 100644 --- a/test/entt/core/any.cpp +++ b/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; diff --git a/test/entt/entity/storage.cpp b/test/entt/entity/storage.cpp index 81a3933e7..45cde3acc 100644 --- a/test/entt/entity/storage.cpp +++ b/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; };