summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/shard_filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/shard_filter.h')
-rw-r--r--src/mongo/db/exec/shard_filter.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/exec/shard_filter.h b/src/mongo/db/exec/shard_filter.h
index f0b04ae9d4a..0703522b525 100644
--- a/src/mongo/db/exec/shard_filter.h
+++ b/src/mongo/db/exec/shard_filter.h
@@ -28,7 +28,6 @@
#pragma once
-#include <boost/scoped_ptr.hpp>
#include "mongo/db/exec/plan_stage.h"
#include "mongo/db/jsobj.h"
@@ -98,7 +97,7 @@ namespace mongo {
private:
WorkingSet* _ws;
- boost::scoped_ptr<PlanStage> _child;
+ std::unique_ptr<PlanStage> _child;
// Stats
CommonStats _commonStats;