forked from organicmaps/organicmaps-tmp
Minor warning fixes.
This commit is contained in:
parent
acd3807576
commit
30c4583904
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue