mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
Correct gcc parenthesis warnings
This commit is contained in:
@ -112,7 +112,7 @@ inline void CUtlMemoryBlockAllocator::RemoveAll( size_t nSize )
|
|||||||
{
|
{
|
||||||
accumulated_total += m_MemPages[i].m_nTotalSize;
|
accumulated_total += m_MemPages[i].m_nTotalSize;
|
||||||
|
|
||||||
if(removed_at != -1 || nSize && accumulated_total > nSize)
|
if(removed_at != -1 || (nSize && accumulated_total > nSize))
|
||||||
{
|
{
|
||||||
CRawAllocator::Free( m_MemPages[i].m_pMemory );
|
CRawAllocator::Free( m_MemPages[i].m_pMemory );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user