Add default constructor to MMH3_HASH.
This commit is contained in:
parent
bee70bca7f
commit
43be7491ff
|
@ -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 )
|
||||
|
|
Loading…
Reference in New Issue