mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 04:26:03 +08:00
Fixed conflict between min/max macros and std::min/max when using GCC >= 4.2.
This commit is contained in:
@ -62,7 +62,7 @@ public:
|
||||
m_errorStack[m_errorIndex] = symName;
|
||||
}
|
||||
m_errorIndex++;
|
||||
m_maxErrorIndex = max( m_maxErrorIndex, (m_errorIndex-1) );
|
||||
m_maxErrorIndex = MAX( m_maxErrorIndex, (m_errorIndex-1) );
|
||||
return m_errorIndex-1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user