Removed Old Asserts
Removed asserts about non-negative numbers on what are now unsigned types Fixes CID 43608
This commit is contained in:
parent
d15743df1c
commit
35dc88e4ff
@ -887,9 +887,7 @@ void cByteBuffer::AdvanceReadPos(size_t a_Count)
|
|||||||
|
|
||||||
void cByteBuffer::CheckValid(void) const
|
void cByteBuffer::CheckValid(void) const
|
||||||
{
|
{
|
||||||
ASSERT(m_ReadPos >= 0);
|
|
||||||
ASSERT(m_ReadPos < m_BufferSize);
|
ASSERT(m_ReadPos < m_BufferSize);
|
||||||
ASSERT(m_WritePos >= 0);
|
|
||||||
ASSERT(m_WritePos < m_BufferSize);
|
ASSERT(m_WritePos < m_BufferSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user