diff --git a/include/fc/io/raw.hpp b/include/fc/io/raw.hpp index 4e81b30..4247a7c 100755 --- a/include/fc/io/raw.hpp +++ b/include/fc/io/raw.hpp @@ -524,11 +524,11 @@ namespace fc { template - inline void pack( Stream& s, const T& v ) { + void pack( Stream& s, const T& v ) { fc::raw::detail::if_reflected< typename fc::reflector::is_defined >::pack(s,v); } template - inline void unpack( Stream& s, T& v ) + void unpack( Stream& s, T& v ) { try { fc::raw::detail::if_reflected< typename fc::reflector::is_defined >::unpack(s,v); } FC_RETHROW_EXCEPTIONS( warn, "error unpacking ${type}", ("type",fc::get_typename::name() ) ) }