Move small_vector_base forward-declaration to container_fwd.hpp.

This commit is contained in:
Andrey Semashev
2019-04-14 00:02:57 +03:00
committed by Ion Gaztañaga
parent 1efda13717
commit 570e79a677
2 changed files with 4 additions and 7 deletions

View File

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

View File

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