aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash.h b/src/hash.h
index 2859758..4f508b2 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -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 {