|
@@ -298,7 +298,7 @@ private:
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void swap_or_move([[maybe_unused]] const std::size_t from, [[maybe_unused]] const std::size_t to) override {
|
|
void swap_or_move([[maybe_unused]] const std::size_t from, [[maybe_unused]] const std::size_t to) override {
|
|
|
- static constexpr bool is_pinned_type = !(std::is_move_constructible_v<Type> && std::is_move_assignable_v<Type>);
|
|
|
|
|
|
|
+ static constexpr bool is_pinned_type = !(std::is_move_constructible_v<Type> && stl::is_move_assignable_v<Type>);
|
|
|
// use a runtime value to avoid compile-time suppression that drives the code coverage tool crazy
|
|
// use a runtime value to avoid compile-time suppression that drives the code coverage tool crazy
|
|
|
ENTT_ASSERT((from + 1u) && !is_pinned_type, "Pinned type");
|
|
ENTT_ASSERT((from + 1u) && !is_pinned_type, "Pinned type");
|
|
|
|
|
|