From 1284c5e68625c8f795190e795454b875da3b0363 Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Thu, 26 Jun 2014 10:41:20 -0400 Subject: [PATCH] Fix build wrt fc::ip::address multiple definitions --- include/fc/reflect/typename.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/fc/reflect/typename.hpp b/include/fc/reflect/typename.hpp index 64f57bc..7b3276a 100644 --- a/include/fc/reflect/typename.hpp +++ b/include/fc/reflect/typename.hpp @@ -4,6 +4,8 @@ namespace fc { class value; class exception; + namespace ip { class address; } + template class get_typename{}; template<> struct get_typename { static const char* name() { return "int32_t"; } }; template<> struct get_typename { static const char* name() { return "int64_t"; } };