summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2018-08-23 12:46:38 +0000
committerTor Egge <Tor.Egge@oath.com>2018-08-23 12:46:38 +0000
commitae31ae391e9faf2bee4d6c2b015e10cd4cf7af46 (patch)
tree6f34b8d5f2bfb7c1fb5ff4fbf55634ee513d3347
parent68ac3794380290c14bcddb57b563a636f3893719 (diff)
Remove unneeded mutable statements.
-rw-r--r--searchlib/src/vespa/searchlib/expression/attributenode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/vespa/searchlib/expression/attributenode.h b/searchlib/src/vespa/searchlib/expression/attributenode.h
index 912b0f94c50..e0f9b4402b2 100644
--- a/searchlib/src/vespa/searchlib/expression/attributenode.h
+++ b/searchlib/src/vespa/searchlib/expression/attributenode.h
@@ -146,9 +146,9 @@ private:
mutable std::vector<search::attribute::IAttributeVector::WeightedEnum> _wVector;
};
- mutable AttributeResult::UP _scratchResult;
- mutable bool _hasMultiValue;
- mutable bool _useEnumOptimization;
+ AttributeResult::UP _scratchResult;
+ bool _hasMultiValue;
+ bool _useEnumOptimization;
std::unique_ptr<Handler> _handler;
vespalib::string _attributeName;
};