Modified comments

This commit is contained in:
jwellbelove 2015-01-21 18:10:26 +00:00
parent 51d7aef0a4
commit 95404af1c8

View File

@ -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.<br>
/// 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()