summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/sharding.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/sharding.cpp')
-rw-r--r--src/mongo/dbtests/sharding.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/dbtests/sharding.cpp b/src/mongo/dbtests/sharding.cpp
index 9bc6068c9fb..70413b3ad34 100644
--- a/src/mongo/dbtests/sharding.cpp
+++ b/src/mongo/dbtests/sharding.cpp
@@ -30,7 +30,6 @@
#include "mongo/platform/basic.h"
-#include <boost/shared_ptr.hpp>
#include "mongo/client/parallel.h"
#include "mongo/db/dbdirectclient.h"
@@ -47,7 +46,7 @@
namespace ShardingTests {
- using boost::shared_ptr;
+ using std::shared_ptr;
using std::unique_ptr;
using std::make_pair;
using std::map;
@@ -478,7 +477,7 @@ namespace ShardingTests {
VersionMap maxShardVersions;
// Create a differ which will track our progress
- boost::shared_ptr< DefaultDiffAdapter > differ( _inverse ? new InverseDiffAdapter() : new DefaultDiffAdapter() );
+ std::shared_ptr< DefaultDiffAdapter > differ( _inverse ? new InverseDiffAdapter() : new DefaultDiffAdapter() );
differ->attach( "test", ranges, maxVersion, maxShardVersions );
std::vector<ChunkType> chunksVector;