aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/index/docbuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/index/docbuilder.h')
-rw-r--r--searchlib/src/vespa/searchlib/index/docbuilder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/index/docbuilder.h b/searchlib/src/vespa/searchlib/index/docbuilder.h
index c141917fbd3..f83f784a621 100644
--- a/searchlib/src/vespa/searchlib/index/docbuilder.h
+++ b/searchlib/src/vespa/searchlib/index/docbuilder.h
@@ -257,7 +257,7 @@ private:
const Schema & _schema;
document::DocumenttypesConfig _doctypes_config;
- document::DocumentTypeRepo::SP _repo;
+ std::shared_ptr<const document::DocumentTypeRepo> _repo;
const document::DocumentType &_docType;
document::Document::UP _doc; // the document we are about to generate
@@ -302,7 +302,7 @@ public:
static bool hasAnnotations() { return true; }
const document::DocumentType &getDocumentType() const { return _docType; }
- const document::DocumentTypeRepo::SP &getDocumentTypeRepo() const { return _repo; }
+ const std::shared_ptr<const document::DocumentTypeRepo> &getDocumentTypeRepo() const { return _repo; }
document::DocumenttypesConfig getDocumenttypesConfig() const { return _doctypes_config; }
};