forked from boostorg/unordered
relied on implicit conversion for second overload of value_from
This commit is contained in:
@ -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>
|
||||||
|
Reference in New Issue
Block a user