Use proper constraints for int variable

This commit is contained in:
Dmitry-Me 2015-01-14 08:36:12 +03:00
parent 38b49ae042
commit ed7a7dc985
1 changed files with 2 additions and 2 deletions

View File

@ -232,14 +232,14 @@ public:
}
void Push( T t ) {
TIXMLASSERT( _size < (size_t)(-1) );
TIXMLASSERT( _size < INT_MAX );
EnsureCapacity( _size+1 );
_mem[_size++] = t;
}
T* PushArr( int count ) {
TIXMLASSERT( count >= 0 );
TIXMLASSERT( _size <= (size_t)(-1) - count );
TIXMLASSERT( _size <= INT_MAX - count );
EnsureCapacity( _size+count );
T* ret = &_mem[_size];
_size += count;