From d0be40a2080c551d7f63b0e8ba8e8b45848cb902 Mon Sep 17 00:00:00 2001 From: dnotestein Date: Sun, 10 May 2015 14:41:23 -0400 Subject: [PATCH] Fix ambiguity between fc and std forward --- include/fc/variant_object.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/variant_object.hpp b/include/fc/variant_object.hpp index 55077ee..72798f7 100644 --- a/include/fc/variant_object.hpp +++ b/include/fc/variant_object.hpp @@ -194,7 +194,7 @@ namespace fc mutable_variant_object( string key, T&& val ) :_key_value( new std::vector() ) { - set( std::move(key), variant(forward(val)) ); + set( std::move(key), variant(fc::forward(val)) ); } mutable_variant_object( mutable_variant_object&& );