mirror of
https://github.com/boostorg/container.git
synced 2026-02-23 03:32:14 +00:00
Remove experimental warning to segmented_vector
This commit is contained in:
@@ -24,7 +24,6 @@ namespace pmr {
|
||||
|
||||
#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
|
||||
|
||||
//! Warning: segmented_vector is EXPERIMENTAL, API and ABI will change.
|
||||
template <class T>
|
||||
using segmented_vector = boost::container::segmented_vector<T, polymorphic_allocator<T>>;
|
||||
|
||||
@@ -32,7 +31,6 @@ using segmented_vector = boost::container::segmented_vector<T, polymorphic_alloc
|
||||
|
||||
//! A portable metafunction to obtain a segmented_vector
|
||||
//! that uses a polymorphic allocator.
|
||||
//! Warning: segmented_vector is EXPERIMENTAL, API and ABI will change.
|
||||
template<class T>
|
||||
struct segmented_vector_of
|
||||
{
|
||||
|
||||
@@ -40,8 +40,6 @@ namespace container {
|
||||
//! \tparam Allocator The allocator used for all internal memory management, use void
|
||||
//! for the default allocator
|
||||
//! \tparam Options A type produced from \c boost::container::segmented_vector_options.
|
||||
//!
|
||||
//! Warning: segmented_vector is EXPERIMENTAL, API and ABI will change.
|
||||
template <class T, class Allocator = void, class Options = void>
|
||||
#else
|
||||
template <class T, class Allocator, class Options>
|
||||
|
||||
Reference in New Issue
Block a user