summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--searchlib/src/vespa/searchlib/attribute/imported_attribute_vector_factory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector_factory.cpp b/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector_factory.cpp
index 9006424a423..ae0fdcf1b83 100644
--- a/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector_factory.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector_factory.cpp
@@ -17,7 +17,7 @@ BasicType::Type getBasicType(const std::shared_ptr<attribute::ReadableAttributeV
if (attr) {
auto readGuard = attr->makeReadGuard(false);
return readGuard->attribute()->getBasicType();
- }else {
+ } else {
return BasicType::Type::NONE;
}
}