mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-23 04:16:04 +08:00
Updated comments.
This commit is contained in:
parent
9b79918537
commit
282103acca
1
queue.h
1
queue.h
@ -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
|
||||
//*****************************************************************************
|
||||
|
||||
|
||||
2
vector.h
2
vector.h
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user