summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/projection.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-01-04 12:23:38 -0500
committerAndrew Morrow <acm@mongodb.com>2015-01-05 18:52:20 -0500
commite782819da4ce547272c653ec85984cacf5e60ff2 (patch)
tree4ed2ffdbe2c74634ed836cde991a2bdd2c9f7bf9 /src/mongo/db/exec/projection.h
parent0c4d932be42022627cd1e8a826fc69cd3edac23f (diff)
downloadmongo-e782819da4ce547272c653ec85984cacf5e60ff2.tar.gz
SERVER-13256 Remove scoped_ptr from pch.h
Diffstat (limited to 'src/mongo/db/exec/projection.h')
-rw-r--r--src/mongo/db/exec/projection.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/exec/projection.h b/src/mongo/db/exec/projection.h
index 9302ba836cb..7724216b00e 100644
--- a/src/mongo/db/exec/projection.h
+++ b/src/mongo/db/exec/projection.h
@@ -28,6 +28,8 @@
#pragma once
+#include <boost/scoped_ptr.hpp>
+
#include "mongo/db/exec/plan_stage.h"
#include "mongo/db/exec/projection_exec.h"
#include "mongo/db/jsobj.h"
@@ -122,11 +124,11 @@ namespace mongo {
private:
Status transform(WorkingSetMember* member);
- scoped_ptr<ProjectionExec> _exec;
+ boost::scoped_ptr<ProjectionExec> _exec;
// _ws is not owned by us.
WorkingSet* _ws;
- scoped_ptr<PlanStage> _child;
+ boost::scoped_ptr<PlanStage> _child;
// Stats
CommonStats _commonStats;