From 12460ba28beeb6064febb0c77c76e10a74ee4a9b Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Mon, 2 Mar 2015 12:23:09 -0500 Subject: [PATCH] Qualify call to fc:: to avoid "ambiguous" error with boost types --- 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 b2f2e4e..55077ee 100644 --- a/include/fc/variant_object.hpp +++ b/include/fc/variant_object.hpp @@ -173,7 +173,7 @@ namespace fc template mutable_variant_object& operator()( string key, T&& var ) { - set(std::move(key), variant( forward(var) ) ); + set(std::move(key), variant( fc::forward(var) ) ); return *this; } ///@}