test: minor changes

This commit is contained in:
Michele Caini
2023-01-12 08:56:28 +01:00
parent 2bb2c55662
commit 314c189c49
2 changed files with 1 additions and 3 deletions

View File

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

View File

@@ -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;
};