diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-19 15:07:11 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-20 17:43:20 -0400 |
commit | 2d5d662a834fab72ee1431e3bb0a5ed5a0826177 (patch) | |
tree | 5e2793249b87e4c99b08c6070820bb747d910a41 /src/mongo/stdx | |
parent | 351523db3169a6c5e2df96f83eacea31978bea3d (diff) | |
download | mongo-2d5d662a834fab72ee1431e3bb0a5ed5a0826177.tar.gz |
SERVER-8994: Boost 1.56 build fixes
Diffstat (limited to 'src/mongo/stdx')
-rw-r--r-- | src/mongo/stdx/list.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/mongo/stdx/list.h b/src/mongo/stdx/list.h index 1360d8c487f..cd6c3accf81 100644 --- a/src/mongo/stdx/list.h +++ b/src/mongo/stdx/list.h @@ -28,23 +28,6 @@ #pragma once -#ifdef _MSC_VER - -// The MSVS STL implementation of std::list is not standards compliant, at least because it -// invalidates iterators during std::list::splice operations. - -#include <boost/container/list.hpp> - -namespace mongo { -namespace stdx { - - using boost::container::list; - -} // namespace stdx -} // namespace mongo - -#else - #include <list> namespace mongo { @@ -54,4 +37,4 @@ namespace stdx { } // namespace stdx } // namespace mongo -#endif + |