relied on implicit conversion for second overload of value_from

This commit is contained in:
joaquintides
2022-10-08 10:18:20 +02:00
parent 2907083b73
commit 16f86b0770

View File

@ -1267,7 +1267,7 @@ private:
> >
static inline init_type value_from(T&& x) static inline init_type value_from(T&& x)
{ {
return init_type{std::forward<T>(x)}; return std::forward<T>(x);
} }
template<typename T> template<typename T>