Fix missing return of UtlSymTableLargeHashFunctor in utlsymbollarge.h (#169)

This commit is contained in:
Noah Kim 2023-10-22 19:42:36 -04:00 committed by GitHub
parent b645c0772b
commit 3600b56ccf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ======// //===== Copyright ? 1996-2005, Valve Corporation, All rights reserved. ======//
// //
// Purpose: Defines a large symbol table (intp sized handles, can store more than 64k strings) // Purpose: Defines a large symbol table (intp sized handles, can store more than 64k strings)
// //
@ -183,7 +183,7 @@ private:
{ {
CUtlSymbolTableLargeBase* pTable = (CUtlSymbolTableLargeBase*)((uintptr_t)this + m_tableOffset); CUtlSymbolTableLargeBase* pTable = (CUtlSymbolTableLargeBase*)((uintptr_t)this + m_tableOffset);
pTable->HashValue( k ); return pTable->HashValue( k );
} }
}; };