mirror of
https://github.com/boostorg/container.git
synced 2025-07-31 21:14:30 +02:00
Move small_vector_base forward-declaration to container_fwd.hpp.
This commit is contained in:
committed by
Ion Gaztañaga
parent
1efda13717
commit
570e79a677
@@ -24,6 +24,7 @@
|
||||
//! - boost::container::vector
|
||||
//! - boost::container::stable_vector
|
||||
//! - boost::container::static_vector
|
||||
//! - boost::container::small_vector_base
|
||||
//! - boost::container::small_vector
|
||||
//! - boost::container::slist
|
||||
//! - boost::container::list
|
||||
@@ -108,6 +109,9 @@ class stable_vector;
|
||||
template <class T, std::size_t Capacity>
|
||||
class static_vector;
|
||||
|
||||
template <class T, class Allocator = void >
|
||||
class small_vector_base;
|
||||
|
||||
template < class T, std::size_t N
|
||||
, class Allocator = void >
|
||||
class small_vector;
|
||||
|
@@ -48,13 +48,6 @@
|
||||
namespace boost {
|
||||
namespace container {
|
||||
|
||||
#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
|
||||
|
||||
template <class T, class Allocator = void >
|
||||
class small_vector_base;
|
||||
|
||||
#endif
|
||||
|
||||
//! A non-standard allocator used to implement `small_vector`.
|
||||
//! Users should never use it directly. It is described here
|
||||
//! for documentation purposes.
|
||||
|
Reference in New Issue
Block a user