summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/count.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/count.h')
-rw-r--r--src/mongo/db/exec/count.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/exec/count.h b/src/mongo/db/exec/count.h
index e0b7d261bd2..4a2954ad140 100644
--- a/src/mongo/db/exec/count.h
+++ b/src/mongo/db/exec/count.h
@@ -28,6 +28,8 @@
#pragma once
+#include <boost/scoped_ptr.hpp>
+
#include "mongo/db/exec/plan_stage.h"
namespace mongo {
@@ -124,7 +126,7 @@ namespace mongo {
// by us.
WorkingSet* _ws;
- scoped_ptr<PlanStage> _child;
+ boost::scoped_ptr<PlanStage> _child;
CommonStats _commonStats;
CountStats _specificStats;