mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-10 12:08:23 +00:00
Fix missing return of UtlSymTableLargeHashFunctor in utlsymbollarge.h (#169)
This commit is contained in:
parent
b645c0772b
commit
3600b56ccf
@ -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)
|
||||
//
|
||||
@ -183,7 +183,7 @@ private:
|
||||
{
|
||||
CUtlSymbolTableLargeBase* pTable = (CUtlSymbolTableLargeBase*)((uintptr_t)this + m_tableOffset);
|
||||
|
||||
pTable->HashValue( k );
|
||||
return pTable->HashValue( k );
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user