Remove experimental warning to segmented_vector

This commit is contained in:
Ion Gaztañaga
2026-02-04 00:05:33 +01:00
parent 0e0e9c51a7
commit 3205bce1b7
2 changed files with 0 additions and 4 deletions

View File

@@ -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
{

View File

@@ -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>