forked from boostorg/container
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::vector
|
||||||
//! - boost::container::stable_vector
|
//! - boost::container::stable_vector
|
||||||
//! - boost::container::static_vector
|
//! - boost::container::static_vector
|
||||||
|
//! - boost::container::small_vector_base
|
||||||
//! - boost::container::small_vector
|
//! - boost::container::small_vector
|
||||||
//! - boost::container::slist
|
//! - boost::container::slist
|
||||||
//! - boost::container::list
|
//! - boost::container::list
|
||||||
@@ -108,6 +109,9 @@ class stable_vector;
|
|||||||
template <class T, std::size_t Capacity>
|
template <class T, std::size_t Capacity>
|
||||||
class static_vector;
|
class static_vector;
|
||||||
|
|
||||||
|
template <class T, class Allocator = void >
|
||||||
|
class small_vector_base;
|
||||||
|
|
||||||
template < class T, std::size_t N
|
template < class T, std::size_t N
|
||||||
, class Allocator = void >
|
, class Allocator = void >
|
||||||
class small_vector;
|
class small_vector;
|
||||||
|
@@ -48,13 +48,6 @@
|
|||||||
namespace boost {
|
namespace boost {
|
||||||
namespace container {
|
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`.
|
//! A non-standard allocator used to implement `small_vector`.
|
||||||
//! Users should never use it directly. It is described here
|
//! Users should never use it directly. It is described here
|
||||||
//! for documentation purposes.
|
//! for documentation purposes.
|
||||||
|
Reference in New Issue
Block a user