summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2018-04-23 09:05:52 +0000
committerTor Egge <Tor.Egge@oath.com>2018-04-23 09:05:52 +0000
commitce92172d5f3a054e502ad6847c235df27e5a71a3 (patch)
tree60bf5105be8bed20d3bf9eef616fd972bb91200e
parent0ef65e3dee88e4be9f2a3d3a8c268ceddf84488b (diff)
Style fix: add space.
-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;
}
}