summaryrefslogtreecommitdiffstats
path: root/vdslib/src/tests/distribution/bucketvector.h
diff options
context:
space:
mode:
Diffstat (limited to 'vdslib/src/tests/distribution/bucketvector.h')
-rw-r--r--vdslib/src/tests/distribution/bucketvector.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/vdslib/src/tests/distribution/bucketvector.h b/vdslib/src/tests/distribution/bucketvector.h
deleted file mode 100644
index 28a87a0fa70..00000000000
--- a/vdslib/src/tests/distribution/bucketvector.h
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#pragma once
-
-#include <vector>
-#include <vespa/document/bucket/bucketid.h>
-
-namespace BucketVector{
-
- void reserve(size_t capacity);
- void clear();
- void addBucket(uint64_t bucket);
- void getBuckets(uint32_t distributionBits, std::vector<document::BucketId>& buckets);
- void printVector();
-}