From 44ea53407bef7c3dca98ef0586d21c07484341b1 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Wed, 5 Dec 2012 11:04:10 -0500 Subject: [PATCH] fix for windows --- include/fc/json_rpc_connection.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/json_rpc_connection.hpp b/include/fc/json_rpc_connection.hpp index 5901413..5bb920d 100644 --- a/include/fc/json_rpc_connection.hpp +++ b/include/fc/json_rpc_connection.hpp @@ -132,7 +132,7 @@ namespace fc { namespace json { template void add_interface( const fc::ptr& it ) { - it->template visit( detail::add_method_visitor( it, *this ) ); + it->TEMPLATE visit( detail::add_method_visitor( it, *this ) ); } void add_method( const fc::string& name, const fc::json::rpc_server_method::ptr& func );