aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcorespi/index/iindexcollection.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcorespi/index/iindexcollection.h')
-rw-r--r--searchcore/src/vespa/searchcorespi/index/iindexcollection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcorespi/index/iindexcollection.h b/searchcore/src/vespa/searchcorespi/index/iindexcollection.h
index 1cbf994b44f..c05e8b3a34c 100644
--- a/searchcore/src/vespa/searchcorespi/index/iindexcollection.h
+++ b/searchcore/src/vespa/searchcorespi/index/iindexcollection.h
@@ -15,8 +15,8 @@ class IIndexCollection {
protected:
using ISourceSelector = search::queryeval::ISourceSelector;
public:
- typedef std::unique_ptr<IIndexCollection> UP;
- typedef std::shared_ptr<IIndexCollection> SP;
+ using UP = std::unique_ptr<IIndexCollection>;
+ using SP = std::shared_ptr<IIndexCollection>;
virtual ~IIndexCollection() {}