mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-26 20:38:45 +08:00
Modified comments
This commit is contained in:
parent
51d7aef0a4
commit
95404af1c8
6
istack.h
6
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.<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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user