summaryrefslogtreecommitdiff
path: root/src/mongo/shell/bench.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-06-10 18:08:48 -0400
committerAndrew Morrow <acm@mongodb.com>2015-06-10 22:37:49 -0400
commitd7d1fdb75966c684e9a42150e6e9b69c4a10ee08 (patch)
treed28b0767cbd8c1a09535f1676152e7ac57e829ce /src/mongo/shell/bench.h
parenta9b6612f5322f916298c19a6728817a1034c6aab (diff)
downloadmongo-d7d1fdb75966c684e9a42150e6e9b69c4a10ee08.tar.gz
SERVER-17308 Replace boost::scoped_ptr<T> with std::unique_ptr<T>
Diffstat (limited to 'src/mongo/shell/bench.h')
-rw-r--r--src/mongo/shell/bench.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/shell/bench.h b/src/mongo/shell/bench.h
index 280d7c1399d..6edd007b6c6 100644
--- a/src/mongo/shell/bench.h
+++ b/src/mongo/shell/bench.h
@@ -30,7 +30,6 @@
#include <string>
-#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/thread/condition.hpp>
#include <boost/noncopyable.hpp>
@@ -434,7 +433,7 @@ namespace mongo {
BenchRunState _brState;
Timer *_brTimer;
unsigned long long _microsElapsed;
- boost::scoped_ptr<BenchRunConfig> _config;
+ std::unique_ptr<BenchRunConfig> _config;
std::vector<BenchRunWorker *> _workers;
BSONObj before;