mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 03:17:15 +02:00
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