Add default constructor to MMH3_HASH.

This commit is contained in:
Alex Shvartzkop 2024-06-25 01:19:55 +03:00
parent bee70bca7f
commit 43be7491ff
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,8 @@
class MMH3_HASH
{
public:
MMH3_HASH() { reset( 0 ); };
MMH3_HASH( uint32_t aSeed = 0 ) { reset( aSeed ); }
FORCE_INLINE void reset( uint32_t aSeed = 0 )