1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 20:46:03 +08:00

Fix conflicts with std::swap.

This commit is contained in:
David Anderson
2020-05-18 17:43:34 -07:00
parent 049f030433
commit b1cae9d92c
26 changed files with 57 additions and 57 deletions

View File

@ -536,7 +536,7 @@ bool CFilterEnemy::PassesProximityFilter( CBaseEntity *pCaller, CBaseEntity *pEn
float flSmallerRadius = m_flRadius;
if ( flSmallerRadius > flLargerRadius )
{
swap( flLargerRadius, flSmallerRadius );
V_swap( flLargerRadius, flSmallerRadius );
}
float flDist;