Get rid of some inlines
This commit is contained in:
parent
23761bade5
commit
a94d110b5d
2 changed files with 2 additions and 3 deletions
|
|
@ -522,7 +522,6 @@ namespace fc {
|
|||
}
|
||||
|
||||
|
||||
|
||||
template<typename Stream, typename T>
|
||||
void pack( Stream& s, const T& v ) {
|
||||
fc::raw::detail::if_reflected< typename fc::reflector<T>::is_defined >::pack(s,v);
|
||||
|
|
|
|||
|
|
@ -83,12 +83,12 @@ namespace fc {
|
|||
namespace raw
|
||||
{
|
||||
template<typename Stream>
|
||||
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<typename Stream>
|
||||
inline void unpack( Stream& s, ip::address& v )
|
||||
void unpack( Stream& s, ip::address& v )
|
||||
{
|
||||
uint32_t _ip;
|
||||
fc::raw::unpack( s, _ip );
|
||||
|
|
|
|||
Loading…
Reference in a new issue