1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

Fix error: ‘max’ was not declared in this scope (#75)

This commit is contained in:
Robin Gohmert 2020-06-20 19:28:15 +02:00 committed by GitHub
parent 6807867df4
commit e369218ae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ public:
m_errorStack[m_errorIndex] = symName; m_errorStack[m_errorIndex] = symName;
} }
m_errorIndex++; m_errorIndex++;
m_maxErrorIndex = max( m_maxErrorIndex, (m_errorIndex-1) ); m_maxErrorIndex = MAX( m_maxErrorIndex, (m_errorIndex-1) );
return m_errorIndex-1; return m_errorIndex-1;
} }