Updated comments.

This commit is contained in:
jwellbelove 2015-02-18 22:57:40 +00:00
parent 9b79918537
commit 282103acca
2 changed files with 0 additions and 3 deletions

View File

@ -41,7 +41,6 @@ SOFTWARE.
///\defgroup queue queue
/// A First-in / first-out queue with the capacity defined at compile time,
/// written in the STL style.
///\note Uses a predefined array, so MAX_SIZE_ elements will be always be constructed.
///\ingroup containers
//*****************************************************************************

View File

@ -41,7 +41,6 @@ SOFTWARE.
//*****************************************************************************
///\defgroup vector vector
/// A vector with the capacity defined at compile time.
///\note Uses a predefined array, so MAX_SIZE_ elements will be always be constructed.
///\ingroup containers
//*****************************************************************************
@ -50,7 +49,6 @@ namespace etl
template <typename T, const size_t MAX_SIZE_>
//***************************************************************************
/// A vector implementation that uses a fixed size buffer.
///\note Uses a predefined array, so MAX_SIZE_ elements will be always be constructed.
///\tparam T The element type.
///\tparam MAX_SIZE_ The maximum number of elements that can be stored.
///\ingroup vector