diff --git a/src/msgpack/pack.hpp b/src/msgpack/pack.hpp index c18385fb..5b5b0460 100644 --- a/src/msgpack/pack.hpp +++ b/src/msgpack/pack.hpp @@ -161,13 +161,13 @@ inline char take8_64(T d) { #endif template -packer::packer(Stream* s) : m_stream(*s) { } +inline packer::packer(Stream* s) : m_stream(*s) { } template -packer::packer(Stream& s) : m_stream(s) { } +inline packer::packer(Stream& s) : m_stream(s) { } template -packer::~packer() { } +inline packer::~packer() { } template