summaryrefslogtreecommitdiff
path: root/src/mongo/pch.h
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-01-03 13:57:25 -0500
committerAndrew Morrow <acm@mongodb.com>2015-01-05 18:26:59 -0500
commit60e074c4c123f559c126ea01877e7bdc33f1bbbd (patch)
tree5e152360966cae519b1f3ee6555ac03f44e3b885 /src/mongo/pch.h
parenteb8e7844901e3fe692c2879a6a3af1433eb87050 (diff)
downloadmongo-60e074c4c123f559c126ea01877e7bdc33f1bbbd.tar.gz
SERVER-13256 Migrate goodies boost headers/usings to pch.h
Diffstat (limited to 'src/mongo/pch.h')
-rw-r--r--src/mongo/pch.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mongo/pch.h b/src/mongo/pch.h
index f64a7f52db4..6b1bd2a7f73 100644
--- a/src/mongo/pch.h
+++ b/src/mongo/pch.h
@@ -50,8 +50,12 @@
#include <set>
#define BOOST_FILESYSTEM_VERSION 3
+#include <boost/intrusive_ptr.hpp>
+#include <boost/scoped_array.hpp>
+#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/smart_ptr.hpp>
+#include <boost/utility.hpp>
#include "mongo/client/redef_macros.h"
@@ -60,6 +64,10 @@
namespace mongo {
using namespace std;
+ using boost::dynamic_pointer_cast;
+ using boost::intrusive_ptr;
+ using boost::scoped_array;
+ using boost::scoped_ptr;
using boost::shared_ptr;
}