mirror of
https://github.com/boostorg/variant2.git
synced 2025-09-25 22:51:34 +02:00
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