diff options
Diffstat (limited to 'src/mongo/db/exec/projection.h')
-rw-r--r-- | src/mongo/db/exec/projection.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/db/exec/projection.h b/src/mongo/db/exec/projection.h index 6878861a997..d70967eebe1 100644 --- a/src/mongo/db/exec/projection.h +++ b/src/mongo/db/exec/projection.h @@ -28,7 +28,6 @@ #pragma once -#include <boost/scoped_ptr.hpp> #include "mongo/db/exec/plan_stage.h" #include "mongo/db/exec/projection_exec.h" @@ -124,11 +123,11 @@ namespace mongo { private: Status transform(WorkingSetMember* member); - boost::scoped_ptr<ProjectionExec> _exec; + std::unique_ptr<ProjectionExec> _exec; // _ws is not owned by us. WorkingSet* _ws; - boost::scoped_ptr<PlanStage> _child; + std::unique_ptr<PlanStage> _child; // Stats CommonStats _commonStats; |