diff options
Diffstat (limited to 'src/hash.h')
-rw-r--r-- | src/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -426,7 +426,7 @@ namespace Bu | |||
426 | { | 426 | { |
427 | uint32_t hash = __calcHashCode( k ); | 427 | uint32_t hash = __calcHashCode( k ); |
428 | bool bFill; | 428 | bool bFill; |
429 | uint32_t nPos = probe( hash, k, bFill ); | 429 | uint32_t nPos = probe( hash, k, bFill, false ); |
430 | 430 | ||
431 | if( bFill ) | 431 | if( bFill ) |
432 | { | 432 | { |
@@ -451,7 +451,7 @@ namespace Bu | |||
451 | { | 451 | { |
452 | uint32_t hash = __calcHashCode( k ); | 452 | uint32_t hash = __calcHashCode( k ); |
453 | bool bFill; | 453 | bool bFill; |
454 | uint32_t nPos = probe( hash, k, bFill ); | 454 | uint32_t nPos = probe( hash, k, bFill, false ); |
455 | 455 | ||
456 | if( bFill ) | 456 | if( bFill ) |
457 | { | 457 | { |