Minor warning fixes.

This commit is contained in:
vng 2011-11-25 15:24:09 +03:00 committed by Alex Zolotarev
parent acd3807576
commit 30c4583904
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ ReaderStreamBuf::~ReaderStreamBuf()
std::streamsize ReaderStreamBuf::xsgetn(char_type * s, std::streamsize n)
{
uint64_t const count = min(static_cast<uint64_t>(n), m_size - m_pos);
std::streamsize const count = min(n, static_cast<std::streamsize>(m_size - m_pos));
if (count > 0)
{
m_p->Read(m_pos, s, count);

View file

@ -37,7 +37,7 @@ class WriterStreamBuf : public BaseStreamBuf
Writer * m_writer;
public:
/// Takes the ownership of p. Reader should be allocated in dynamic memory.
/// Takes the ownership of p. Writer should be allocated in dynamic memory.
WriterStreamBuf(Writer * p) : m_writer(p) {}
virtual ~WriterStreamBuf();