bump variant dependency
This commit is contained in:
parent
c1136099a9
commit
d42772a261
2
ThirdParty/variant/variant.hpp
vendored
2
ThirdParty/variant/variant.hpp
vendored
@ -555,7 +555,7 @@ public:
|
||||
template <typename T>
|
||||
VARIANT_INLINE variant<Types...>& operator=(T && rhs) noexcept
|
||||
{
|
||||
variant<Types...> temp(std::move(rhs));
|
||||
variant<Types...> temp(std::forward<T>(rhs));
|
||||
swap(*this, temp);
|
||||
return *this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user