summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/in_memory/in_memory_btree_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/in_memory/in_memory_btree_impl.h')
-rw-r--r--src/mongo/db/storage/in_memory/in_memory_btree_impl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/storage/in_memory/in_memory_btree_impl.h b/src/mongo/db/storage/in_memory/in_memory_btree_impl.h
index 3297b599b1e..ee318312c78 100644
--- a/src/mongo/db/storage/in_memory/in_memory_btree_impl.h
+++ b/src/mongo/db/storage/in_memory/in_memory_btree_impl.h
@@ -28,7 +28,6 @@
* it in the license file.
*/
-#include <boost/shared_ptr.hpp>
#include "mongo/db/storage/sorted_data_interface.h"
@@ -43,6 +42,6 @@ namespace mongo {
* All permanent data will be stored and fetch from dataInOut.
*/
SortedDataInterface* getInMemoryBtreeImpl(const Ordering& ordering,
- boost::shared_ptr<void>* dataInOut);
+ std::shared_ptr<void>* dataInOut);
} // namespace mongo