summaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/vespa/searchsummary/docsummary/attributedfw.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/searchsummary/src/vespa/searchsummary/docsummary/attributedfw.cpp b/searchsummary/src/vespa/searchsummary/docsummary/attributedfw.cpp
index d6504c90c46..5059e859e41 100644
--- a/searchsummary/src/vespa/searchsummary/docsummary/attributedfw.cpp
+++ b/searchsummary/src/vespa/searchsummary/docsummary/attributedfw.cpp
@@ -137,8 +137,8 @@ SingleAttrDFW::WriteField(uint32_t docid,
BasicType::Type t = v.getBasicType();
switch (t) {
case BasicType::TENSOR: {
- const attribute::TensorAttribute &tv =
- static_cast<const attribute::TensorAttribute &>(v);
+ const tensor::TensorAttribute &tv =
+ static_cast<const tensor::TensorAttribute &>(v);
const auto tensor = tv.getTensor(docid);
vespalib::string str;
if (tensor) {
@@ -226,8 +226,8 @@ SingleAttrDFW::insertField(uint32_t docid,
BasicType::Type t = v.getBasicType();
switch (t) {
case BasicType::TENSOR: {
- const attribute::TensorAttribute &tv =
- static_cast<const attribute::TensorAttribute &>(v);
+ const tensor::TensorAttribute &tv =
+ static_cast<const tensor::TensorAttribute &>(v);
const auto tensor = tv.getTensor(docid);
if (tensor) {
vespalib::tensor::SlimeBinaryFormat::serialize(target, *tensor);