summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-01-04 13:28:20 -0500
committerAndrew Morrow <acm@mongodb.com>2015-01-05 22:55:47 -0500
commit3ec53687da4702d348f1b55eda5e01bd26f36c4b (patch)
treeb2fc1a3315b952ee649d79752e80a5bd00fdb194 /src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp
parent738e17c6366b416b60dfcebaff99ee2a357c7fcf (diff)
downloadmongo-3ec53687da4702d348f1b55eda5e01bd26f36c4b.tar.gz
SERVER-13256 Remove shared_ptr from pch.h
Diffstat (limited to 'src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp')
-rw-r--r--src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp b/src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp
index c91a64ae85b..0b1a6078571 100644
--- a/src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp
+++ b/src/mongo/db/storage/in_memory/in_memory_btree_impl_test.cpp
@@ -29,12 +29,17 @@
*/
#include "mongo/db/storage/in_memory/in_memory_btree_impl.h"
+
+#include <boost/shared_ptr.hpp>
+
#include "mongo/db/storage/in_memory/in_memory_recovery_unit.h"
#include "mongo/db/storage/sorted_data_interface_test_harness.h"
#include "mongo/unittest/unittest.h"
namespace mongo {
+ using boost::shared_ptr;
+
class InMemoryHarnessHelper : public HarnessHelper {
public:
InMemoryHarnessHelper()