summaryrefslogtreecommitdiff
path: root/src/mongo/s/query/router_stage_pipeline.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/query/router_stage_pipeline.h')
-rw-r--r--src/mongo/s/query/router_stage_pipeline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/query/router_stage_pipeline.h b/src/mongo/s/query/router_stage_pipeline.h
index 3c54eb9d2bb..e876dc816a2 100644
--- a/src/mongo/s/query/router_stage_pipeline.h
+++ b/src/mongo/s/query/router_stage_pipeline.h
@@ -43,7 +43,7 @@ namespace mongo {
class RouterStagePipeline final : public RouterExecStage {
public:
RouterStagePipeline(std::unique_ptr<RouterExecStage> child,
- std::unique_ptr<Pipeline, Pipeline::Deleter> mergePipeline);
+ std::unique_ptr<Pipeline, PipelineDeleter> mergePipeline);
StatusWith<ClusterQueryResult> next(RouterExecStage::ExecContext execContext) final;
@@ -60,7 +60,7 @@ protected:
private:
boost::intrusive_ptr<DocumentSourceRouterAdapter> _routerAdapter;
- std::unique_ptr<Pipeline, Pipeline::Deleter> _mergePipeline;
+ std::unique_ptr<Pipeline, PipelineDeleter> _mergePipeline;
bool _mongosOnlyPipeline;
};
} // namespace mongo