fix msgpack::unpack_return

This commit is contained in:
frsyuki (none)
2009-02-25 18:55:56 +09:00
parent 4d708aa4da
commit 43360e3786
3 changed files with 16 additions and 11 deletions

View File

@@ -30,6 +30,7 @@ template <typename Stream>
class packer {
public:
packer(Stream& s);
~packer();
public:
template <typename T>
@@ -129,6 +130,9 @@ private:
template <typename Stream>
packer<Stream>::packer(Stream& s) : m_stream(s) { }
template <typename Stream>
packer<Stream>::~packer() { }
template <typename Stream>
inline packer<Stream>& packer<Stream>::pack_uint8(uint8_t d)
{ _pack_uint8(m_stream, d); return *this; }