aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h b/searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h
index a269aec5c6b..5b0e1c6131e 100644
--- a/searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h
+++ b/searchlib/src/vespa/searchlib/attribute/singlenumericenumattribute.h
@@ -74,12 +74,6 @@ public:
double getFloat(DocId doc) const override {
return static_cast<double>(get(doc));
}
- uint32_t getAll(DocId doc, T * v, uint32_t sz) const override {
- if (sz > 0) {
- v[0] = get(doc);
- }
- return 1;
- }
uint32_t get(DocId doc, largeint_t * v, uint32_t sz) const override {
if (sz > 0) {
v[0] = getInt(doc);
@@ -92,12 +86,6 @@ public:
}
return 1;
}
- uint32_t getAll(DocId doc, Weighted * v, uint32_t sz) const override {
- if (sz > 0) {
- v[0] = Weighted(get(doc));
- }
- return 1;
- }
uint32_t get(DocId doc, WeightedInt * v, uint32_t sz) const override {
if (sz > 0) {
v[0] = WeightedInt(getInt(doc));