updated boost on windows

This commit is contained in:
Bassem Girgis
2019-08-13 21:48:48 -05:00
parent 7d77d485fd
commit b40a3bee82
5162 changed files with 473027 additions and 116452 deletions

View File

@@ -32,7 +32,7 @@
namespace boost {
namespace container {
namespace container_detail {
namespace dtl {
//!Pooled memory allocator using single segregated storage. Includes
//!a reference count but the class does not delete itself, this is
@@ -41,10 +41,10 @@ namespace container_detail {
template< std::size_t NodeSize, std::size_t NodesPerBlock >
class private_node_pool
//Inherit from the implementation to avoid template bloat
: public boost::container::container_detail::
: public boost::container::dtl::
private_node_pool_impl<fake_segment_manager>
{
typedef boost::container::container_detail::
typedef boost::container::dtl::
private_node_pool_impl<fake_segment_manager> base_t;
//Non-copyable
private_node_pool(const private_node_pool &);
@@ -148,7 +148,7 @@ class shared_node_pool
default_mutex mutex_;
};
} //namespace container_detail {
} //namespace dtl {
} //namespace container {
} //namespace boost {