summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/attributecontext.cpp10
-rw-r--r--searchlib/src/vespa/searchlib/attribute/attributecontext.h6
2 files changed, 8 insertions, 8 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/attributecontext.cpp b/searchlib/src/vespa/searchlib/attribute/attributecontext.cpp
index 598fdc7ac40..3c85c076eb2 100644
--- a/searchlib/src/vespa/searchlib/attribute/attributecontext.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/attributecontext.cpp
@@ -30,11 +30,11 @@ AttributeContext::getAttribute(AttributeMap & map, const string & name, bool sta
}
}
-AttributeContext::AttributeContext(const IAttributeManager & manager) :
- _manager(manager),
- _attributes(),
- _enumAttributes(),
- _cacheLock()
+AttributeContext::AttributeContext(const IAttributeManager & manager)
+ : _manager(manager),
+ _attributes(),
+ _enumAttributes(),
+ _cacheLock()
{ }
AttributeContext::~AttributeContext() = default;
diff --git a/searchlib/src/vespa/searchlib/attribute/attributecontext.h b/searchlib/src/vespa/searchlib/attribute/attributecontext.h
index 4ba3d07ef74..8b8cf5daead 100644
--- a/searchlib/src/vespa/searchlib/attribute/attributecontext.h
+++ b/searchlib/src/vespa/searchlib/attribute/attributecontext.h
@@ -21,9 +21,9 @@ private:
using IAttributeFunctor = attribute::IAttributeFunctor;
const IAttributeManager & _manager;
- mutable AttributeMap _attributes;
- mutable AttributeMap _enumAttributes;
- mutable std::mutex _cacheLock;
+ mutable AttributeMap _attributes;
+ mutable AttributeMap _enumAttributes;
+ mutable std::mutex _cacheLock;
const IAttributeVector *getAttribute(AttributeMap & map, const string & name, bool stableEnum) const;