forked from boostorg/variant2
Add missing std::move
This commit is contained in:
@ -2479,7 +2479,7 @@ template<class V> struct tag_invoke_L2
|
|||||||
|
|
||||||
if( r2 )
|
if( r2 )
|
||||||
{
|
{
|
||||||
r.emplace( in_place_index_t<i>{}, *r2 );
|
r.emplace( in_place_index_t<i>{}, std::move( *r2 ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user