From 282103accad47e8876e8ffc8d1f0dbfa9e6d02c1 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Wed, 18 Feb 2015 22:57:40 +0000 Subject: [PATCH] Updated comments. --- queue.h | 1 - vector.h | 2 -- 2 files changed, 3 deletions(-) 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