summaryrefslogtreecommitdiff
path: root/src/mongo/stdx
diff options
context:
space:
mode:
authorMatt Cotter <matt.cotter@mongodb.com>2016-12-13 16:11:41 -0500
committerMatt Cotter <matt.cotter@mongodb.com>2016-12-15 17:07:30 -0500
commitd6a23485995c3351a8c797bc4d74a55edbbce8fe (patch)
tree5275892b161e12705b7717b35f8670fae47cb316 /src/mongo/stdx
parent39bcdc6e6ef4980d6103ca0746ef1f4347aae841 (diff)
downloadmongo-d6a23485995c3351a8c797bc4d74a55edbbce8fe.tar.gz
SERVER-26698 switch all compiles to C++14
Enjoy the C++14! 😀 ❤️ thank you!
Diffstat (limited to 'src/mongo/stdx')
-rw-r--r--src/mongo/stdx/memory.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mongo/stdx/memory.h b/src/mongo/stdx/memory.h
index 8d04d728263..83793f86c5a 100644
--- a/src/mongo/stdx/memory.h
+++ b/src/mongo/stdx/memory.h
@@ -55,29 +55,3 @@ using boost::make_unique; // NOLINT
} // namespace mongo
#endif
-
-#if defined(MONGO_CONFIG_HAVE_STD_ALIGN)
-
-#include <memory>
-
-namespace mongo {
-namespace stdx {
-
-using ::std::align; // NOLINT
-
-} // namespace stdx
-} // namespace mongo
-
-#else
-
-#include <boost/align/align.hpp>
-
-namespace mongo {
-namespace stdx {
-
-using boost::alignment::align; // NOLINT
-
-} // namespace stdx
-} // namespace mongo
-
-#endif