mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-05-27 23:10:20 +02:00
Added inline for constructors and a destructor.
This commit is contained in:
parent
b6b2ef5e57
commit
541ece13c0
@ -161,13 +161,13 @@ inline char take8_64(T d) {
|
||||
#endif
|
||||
|
||||
template <typename Stream>
|
||||
packer<Stream>::packer(Stream* s) : m_stream(*s) { }
|
||||
inline packer<Stream>::packer(Stream* s) : m_stream(*s) { }
|
||||
|
||||
template <typename Stream>
|
||||
packer<Stream>::packer(Stream& s) : m_stream(s) { }
|
||||
inline packer<Stream>::packer(Stream& s) : m_stream(s) { }
|
||||
|
||||
template <typename Stream>
|
||||
packer<Stream>::~packer() { }
|
||||
inline packer<Stream>::~packer() { }
|
||||
|
||||
|
||||
template <typename Stream>
|
||||
|
Loading…
x
Reference in New Issue
Block a user