1
0

Removed Old Asserts

Removed asserts about non-negative numbers on what are now unsigned types
Fixes CID 43608
This commit is contained in:
Tycho 2014-04-27 12:42:29 -07:00
parent d15743df1c
commit 35dc88e4ff

View File

@ -887,9 +887,7 @@ void cByteBuffer::AdvanceReadPos(size_t a_Count)
void cByteBuffer::CheckValid(void) const
{
ASSERT(m_ReadPos >= 0);
ASSERT(m_ReadPos < m_BufferSize);
ASSERT(m_WritePos >= 0);
ASSERT(m_WritePos < m_BufferSize);
}