From a94d110b5d4f526caf1f2a49aae7c5057b62dde2 Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Wed, 15 May 2019 12:48:06 +0200 Subject: [PATCH] Get rid of some inlines --- include/fc/io/raw.hpp | 1 - include/fc/network/ip.hpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/fc/io/raw.hpp b/include/fc/io/raw.hpp index 4247a7c..7e5b5f1 100755 --- a/include/fc/io/raw.hpp +++ b/include/fc/io/raw.hpp @@ -522,7 +522,6 @@ namespace fc { } - template void pack( Stream& s, const T& v ) { fc::raw::detail::if_reflected< typename fc::reflector::is_defined >::pack(s,v); diff --git a/include/fc/network/ip.hpp b/include/fc/network/ip.hpp index 5a1bd0c..1f23c5e 100755 --- a/include/fc/network/ip.hpp +++ b/include/fc/network/ip.hpp @@ -83,12 +83,12 @@ namespace fc { namespace raw { template - inline void pack( Stream& s, const ip::address& v ) + void pack( Stream& s, const ip::address& v ) { fc::raw::pack( s, uint32_t(v) ); } template - inline void unpack( Stream& s, ip::address& v ) + void unpack( Stream& s, ip::address& v ) { uint32_t _ip; fc::raw::unpack( s, _ip );