Fix ambiguity between fc and std forward
This commit is contained in:
parent
a62f7d2e87
commit
d0be40a208
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ namespace fc
|
|||
mutable_variant_object( string key, T&& val )
|
||||
:_key_value( new std::vector<entry>() )
|
||||
{
|
||||
set( std::move(key), variant(forward<T>(val)) );
|
||||
set( std::move(key), variant(fc::forward<T>(val)) );
|
||||
}
|
||||
|
||||
mutable_variant_object( mutable_variant_object&& );
|
||||
|
|
|
|||
Loading…
Reference in a new issue