Replaced unsigned int to size_t.

This commit is contained in:
Takatoshi Kondo 2014-03-05 00:44:15 +00:00
parent c08439ff41
commit 038c3e3518

View File

@ -101,7 +101,7 @@ private:
template <typename T>
void pack_imp_int64(T d);
void append_buffer(const char* buf, unsigned int len)
void append_buffer(const char* buf, size_t len)
{ m_stream.write(buf, len); }
private: