diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-01-04 12:23:38 -0500 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-01-05 18:52:20 -0500 |
commit | e782819da4ce547272c653ec85984cacf5e60ff2 (patch) | |
tree | 4ed2ffdbe2c74634ed836cde991a2bdd2c9f7bf9 /src/mongo/db/clientcursor.h | |
parent | 0c4d932be42022627cd1e8a826fc69cd3edac23f (diff) | |
download | mongo-e782819da4ce547272c653ec85984cacf5e60ff2.tar.gz |
SERVER-13256 Remove scoped_ptr from pch.h
Diffstat (limited to 'src/mongo/db/clientcursor.h')
-rw-r--r-- | src/mongo/db/clientcursor.h | 3 |
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; }; /** |