1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Update sqratUtil.h

This commit is contained in:
Sandu Liviu Catalin 2021-02-05 13:31:56 +02:00
parent d73ee70395
commit 6d30202bbd

View File

@ -2019,9 +2019,11 @@ struct StackStrF
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Compute the string hash and cache it into the mRes member. /// Compute the string hash and cache it into the mRes member.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CacheHash() StackStrF & CacheHash()
{ {
mRes = static_cast< SQInteger >(ToHash()); mRes = static_cast< SQInteger >(ToHash());
// Allow chaining
return *this;
} }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Retrieve the cached string hash. /// Retrieve the cached string hash.