forked from boostorg/unordered
Fix warning in msvc-14.3 with C++20 about multiple implicit conversions being applied
This commit is contained in:
@@ -1260,7 +1260,7 @@ private:
|
|||||||
>
|
>
|
||||||
static inline init_type value_from(T&& x)
|
static inline init_type value_from(T&& x)
|
||||||
{
|
{
|
||||||
return {std::forward<T>(x)};
|
return init_type{std::forward<T>(x)};
|
||||||
}
|
}
|
||||||
|
|
||||||
template<
|
template<
|
||||||
|
Reference in New Issue
Block a user