summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/update.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/update.h')
-rw-r--r--src/mongo/db/exec/update.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/exec/update.h b/src/mongo/db/exec/update.h
index 604bc5c202a..08bf949b958 100644
--- a/src/mongo/db/exec/update.h
+++ b/src/mongo/db/exec/update.h
@@ -28,6 +28,8 @@
#pragma once
+#include <boost/scoped_ptr.hpp>
+
#include "mongo/db/catalog/collection.h"
#include "mongo/db/exec/plan_stage.h"
#include "mongo/db/jsobj.h"
@@ -155,7 +157,7 @@ namespace mongo {
Collection* _collection;
// Owned by us.
- scoped_ptr<PlanStage> _child;
+ boost::scoped_ptr<PlanStage> _child;
// Stats
CommonStats _commonStats;