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 );