summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2019-06-06 15:01:40 +0000
committerHenning Baldersheim <balder@oath.com>2019-06-06 15:01:40 +0000
commitdeb20312a19f5ace6bc38a703f5af534ec278769 (patch)
treee28d746e8b4cbc2f7abd423d8e4fea50ff911ac3
parenta350e862c57a477388679e871de40d009cc24921 (diff)
Remove debug code
-rw-r--r--searchlib/src/vespa/searchlib/common/allocatedbitvector.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/searchlib/src/vespa/searchlib/common/allocatedbitvector.cpp b/searchlib/src/vespa/searchlib/common/allocatedbitvector.cpp
index 0141576c0c8..3de0c1f1320 100644
--- a/searchlib/src/vespa/searchlib/common/allocatedbitvector.cpp
+++ b/searchlib/src/vespa/searchlib/common/allocatedbitvector.cpp
@@ -13,9 +13,6 @@ namespace {
size_t computeCapacity(size_t capacity, size_t allocatedBytes) {
size_t possibleCapacity = (allocatedBytes * 8) - 1;
- if (possibleCapacity < capacity) {
- printf("capacity=%ld bytes=%ld possible=%ld\n", capacity, allocatedBytes, possibleCapacity);
- }
assert(possibleCapacity >= capacity);
return possibleCapacity;
}