diff --git a/queue.h b/queue.h index 29bc551a..dbbeb4f8 100644 --- a/queue.h +++ b/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 //***************************************************************************** diff --git a/vector.h b/vector.h index 315e2fec..19d7e858 100644 --- a/vector.h +++ b/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 //*************************************************************************** /// 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