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

Fix clang warning

Fixes -Wordered-compare-function-pointers warning on clang
This commit is contained in:
GAMMACASE
2024-08-25 04:13:05 +03:00
parent e06c04d131
commit f21e0c9d8f

View File

@ -380,7 +380,7 @@ struct AtomicTypeInfo_T_t
if ( m_pTemplateType != rhs.m_pTemplateType ) if ( m_pTemplateType != rhs.m_pTemplateType )
return m_pTemplateType < rhs.m_pTemplateType; return m_pTemplateType < rhs.m_pTemplateType;
return m_pfnManipulator < rhs.m_pfnManipulator; return (void *)m_pfnManipulator < (void *)rhs.m_pfnManipulator;
} }
int m_nAtomicID; int m_nAtomicID;