diff options
Diffstat (limited to 'src/mongo/db/exec/skip.h')
-rw-r--r-- | src/mongo/db/exec/skip.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/exec/skip.h b/src/mongo/db/exec/skip.h index ff3982a415c..77bdd5786a5 100644 --- a/src/mongo/db/exec/skip.h +++ b/src/mongo/db/exec/skip.h @@ -28,7 +28,6 @@ #pragma once -#include <boost/scoped_ptr.hpp> #include "mongo/db/exec/plan_stage.h" #include "mongo/db/jsobj.h" @@ -68,7 +67,7 @@ namespace mongo { private: WorkingSet* _ws; - boost::scoped_ptr<PlanStage> _child; + std::unique_ptr<PlanStage> _child; // We drop the first _toSkip results that we would have returned. int _toSkip; |