aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-03-04 13:20:57 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2019-03-05 12:15:45 +0000
commit93b456616a62ddebde096f9764cef4301d1fd77f (patch)
tree2497f0a5adfd4d1fa697ff139117a38e104f3913 /searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h
parentb6efafb19182a12477c8b4a450e185c152aa594f (diff)
=default
Diffstat (limited to 'searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h b/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h
index e6356866ed9..33afaaf7f1e 100644
--- a/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h
+++ b/searchlib/src/vespa/searchlib/attribute/imported_attribute_vector.h
@@ -6,11 +6,9 @@
#include <vespa/vespalib/stllike/string.h>
#include <memory>
-namespace search {
+namespace search { struct IDocumentMetaStoreContext; }
-struct IDocumentMetaStoreContext;
-
-namespace attribute {
+namespace search::attribute {
class BitVectorSearchCache;
class ReadableAttributeVector;
@@ -63,7 +61,7 @@ public:
return _name;
}
- virtual std::unique_ptr<AttributeReadGuard> makeReadGuard(bool stableEnumGuard) const override;
+ std::unique_ptr<AttributeReadGuard> makeReadGuard(bool stableEnumGuard) const override;
protected:
vespalib::string _name;
@@ -75,4 +73,3 @@ protected:
};
}
-}