summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/pipeline_proxy.h
diff options
context:
space:
mode:
authorCharlie Swanson <charlie.swanson@mongodb.com>2017-12-19 14:31:36 -0500
committerCharlie Swanson <charlie.swanson@mongodb.com>2017-12-19 17:29:29 -0500
commitb5a2cc0fec6ac30b1a0196da5feb41d85a8b76c3 (patch)
tree4147e3b4ffbfea86eec107e7d6a6d777bded033d /src/mongo/db/exec/pipeline_proxy.h
parentbd9c109958c1721767f5432683706c62ec90fe30 (diff)
downloadmongo-b5a2cc0fec6ac30b1a0196da5feb41d85a8b76c3.tar.gz
SERVER-32190 Make MongoProcessInterface always available
Diffstat (limited to 'src/mongo/db/exec/pipeline_proxy.h')
-rw-r--r--src/mongo/db/exec/pipeline_proxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/pipeline_proxy.h b/src/mongo/db/exec/pipeline_proxy.h
index 1ca688d7ac4..bf9ca8a738b 100644
--- a/src/mongo/db/exec/pipeline_proxy.h
+++ b/src/mongo/db/exec/pipeline_proxy.h
@@ -47,7 +47,7 @@ namespace mongo {
class PipelineProxyStage final : public PlanStage {
public:
PipelineProxyStage(OperationContext* opCtx,
- std::unique_ptr<Pipeline, Pipeline::Deleter> pipeline,
+ std::unique_ptr<Pipeline, PipelineDeleter> pipeline,
WorkingSet* ws);
PlanStage::StageState doWork(WorkingSetID* out) final;
@@ -95,7 +95,7 @@ private:
boost::optional<BSONObj> getNextBson();
// Things in the _stash should be returned before pulling items from _pipeline.
- std::unique_ptr<Pipeline, Pipeline::Deleter> _pipeline;
+ std::unique_ptr<Pipeline, PipelineDeleter> _pipeline;
std::vector<BSONObj> _stash;
const bool _includeMetaData;