summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-01-15 09:59:05 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2024-01-15 09:59:05 +0000
commit3138973345b424dc8cffdeaeef38ef427983b161 (patch)
treef029b9d3c09d0565fad95e09f67ba5ee9cfbddb5 /searchlib
parentd4918f2ce956e316b6ce398f144c53f52e3288da (diff)
parent29a807d35ac5d9e76ea1b8d653bb25b0e4e2dc73 (diff)
Merge branch 'balder/sliced-parallell-or' of github.com:vespa-engine/vespa into balder/sliced-parallell-or
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/common/bitvector.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/common/bitvector.h b/searchlib/src/vespa/searchlib/common/bitvector.h
index b1a02f5cee2..c403ce0d8a9 100644
--- a/searchlib/src/vespa/searchlib/common/bitvector.h
+++ b/searchlib/src/vespa/searchlib/common/bitvector.h
@@ -288,7 +288,6 @@ public:
* TODO: Extend to handle both AND/OR
*/
static void parallellOr(vespalib::ThreadBundle & thread_bundle, vespalib::ConstArrayRef<BitVector *> vectors);
-
static Index numWords(Index bits) noexcept { return wordNum(bits + 1 + (WordLen - 1)); }
static Index numBytes(Index bits) noexcept { return numWords(bits) * sizeof(Word); }
protected: