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; } ///@}