aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2024-05-19 22:52:22 +0200
committerTor Egge <Tor.Egge@online.no>2024-05-19 22:52:22 +0200
commit7d057ea51f67675b8214e99c64c0729471aa5dd3 (patch)
tree6a617f9f0d7ed5c11683fa799e4a605dabce988e /searchcore/src
parent6e3cc46cf6717b58ab658d1efe6b44df0dbae77a (diff)
Use const auto* to indicate that variable is a pointer.
Diffstat (limited to 'searchcore/src')
-rw-r--r--searchcore/src/vespa/searchcore/proton/common/attribute_updater.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/common/attribute_updater.cpp b/searchcore/src/vespa/searchcore/proton/common/attribute_updater.cpp
index 24d0a05505b..e6c5a17baaf 100644
--- a/searchcore/src/vespa/searchcore/proton/common/attribute_updater.cpp
+++ b/searchcore/src/vespa/searchcore/proton/common/attribute_updater.cpp
@@ -503,7 +503,7 @@ void
AttributeUpdater::updateValue(TensorAttribute &vec, uint32_t lid, const FieldValue &val)
{
validate_field_value_type(FieldValue::Type::TENSOR, val, "TensorAttribute", "TensorFieldValue");
- const auto tensor = static_cast<const TensorFieldValue &>(val).getAsTensorPtr();
+ const auto* tensor = static_cast<const TensorFieldValue &>(val).getAsTensorPtr();
if (tensor) {
vec.setTensor(lid, *tensor);
} else {
@@ -558,7 +558,7 @@ std::unique_ptr<PrepareResult>
prepare_set_tensor(TensorAttribute& attr, uint32_t docid, const FieldValue& val)
{
validate_field_value_type(FieldValue::Type::TENSOR, val, "TensorAttribute", "TensorFieldValue");
- const auto tensor = static_cast<const TensorFieldValue&>(val).getAsTensorPtr();
+ const auto* tensor = static_cast<const TensorFieldValue&>(val).getAsTensorPtr();
if (tensor) {
return attr.prepare_set_tensor(docid, *tensor);
}
@@ -569,7 +569,7 @@ void
complete_set_tensor(TensorAttribute& attr, uint32_t docid, const FieldValue& val, std::unique_ptr<PrepareResult> prepare_result)
{
validate_field_value_type(FieldValue::Type::TENSOR, val, "TensorAttribute", "TensorFieldValue");
- const auto tensor = static_cast<const TensorFieldValue&>(val).getAsTensorPtr();
+ const auto* tensor = static_cast<const TensorFieldValue&>(val).getAsTensorPtr();
if (tensor) {
attr.complete_set_tensor(docid, *tensor, std::move(prepare_result));
} else {