summaryrefslogtreecommitdiff
path: root/src/mongo/db/clientcursor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/clientcursor.h')
-rw-r--r--src/mongo/db/clientcursor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/clientcursor.h b/src/mongo/db/clientcursor.h
index 8174efab5ab..21c08f5f886 100644
--- a/src/mongo/db/clientcursor.h
+++ b/src/mongo/db/clientcursor.h
@@ -28,6 +28,7 @@
#pragma once
+#include <boost/scoped_ptr.hpp>
#include <boost/thread/recursive_mutex.hpp>
#include "mongo/db/jsobj.h"
@@ -276,7 +277,7 @@ namespace mongo {
//
// The underlying execution machinery.
//
- scoped_ptr<PlanExecutor> _exec;
+ boost::scoped_ptr<PlanExecutor> _exec;
};
/**