Improve c++20 CUtlStringMap compatibility (#226)

This commit is contained in:
zer0.k 2024-03-30 19:02:03 +01:00 committed by GitHub
parent 68b1e8d806
commit 3b3b695c09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,7 +49,7 @@ public:
bool Defined( const char *pString ) const
{
return m_SymbolTable.Find( pString ) != UTL_INVAL_SYMBOL;
return m_SymbolTable.Find( pString ).IsValid();
}
UtlSymId_t Find( const char *pString ) const