Revert OSX CI experiment as it breaks emplace_tests

This commit is contained in:
Christian Mazakas
2023-02-01 10:49:20 -08:00
parent 18a664c4a6
commit 2a7a8f55e1

View File

@ -1394,9 +1394,9 @@ public:
* unconditionally allocates via `type_policy::construct()`. * unconditionally allocates via `type_policy::construct()`.
*/ */
return emplace_dispatch( return emplace_dispatch(
std::is_same< std::is_constructible<
value_type, value_type,
element_type>{}, emplace_type<Args...>&&>{},
std::forward<Args>(args)...); std::forward<Args>(args)...);
} }