From 95404af1c8125f9e0da5ae43606016530f1a0666 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Wed, 21 Jan 2015 18:10:26 +0000 Subject: [PATCH] Modified comments --- istack.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/istack.h b/istack.h index 358b3de9..81499836 100644 --- a/istack.h +++ b/istack.h @@ -82,8 +82,7 @@ namespace etl //************************************************************************* /// Adds a value to the stack. - /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full, - /// otherwise does nothing if full. + /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full. ///\param value The value to push to the stack. //************************************************************************* void push(parameter_t value) @@ -109,8 +108,7 @@ namespace etl /// Allows a possibly more efficient 'push' by moving to the next input value /// and returning a reference to it. /// This may eliminate a copy by allowing direct construction in-place.
- /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full, - /// otherwise does nothing if full. + /// If ETL_THROW_EXCEPTIONS is defined, throws an etl::stack_full is the stack is already full. /// \return A reference to the position to 'push' to. //************************************************************************* reference push()