Skip to content
Permalink
Browse files
Force rebuild GNU hash table even though it's empty
  • Loading branch information
rthomas committed Nov 4, 2020
1 parent dc31e15 commit 1381f9a
Showing 1 changed file with 2 additions and 4 deletions.
@@ -884,13 +884,11 @@ void Builder::build_symbol_gnuhash(void) {

const std::vector<uint64_t>& filters = gnu_hash.bloom_filters();
if (filters.size() > 0 and filters[0] == 0) {
VLOG(VDEBUG) << "Bloom filter is null: nothing to do!";
return;
VLOG(VDEBUG) << "Bloom filter is null";
}

if (shift2 == 0) {
VLOG(VDEBUG) << "Shift2 is null: nothing to do!";
return;
VLOG(VDEBUG) << "Shift2 is null";
}

VLOG(VDEBUG) << "Number of buckets " << std::dec << nb_buckets;

0 comments on commit 1381f9a

Please sign in to comment.