mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-28 21:38:44 +08:00
Fixed GCC warnings
This commit is contained in:
parent
430248fdf1
commit
4b9e9cd651
@ -675,7 +675,7 @@ namespace etl
|
||||
///\param position The position that would precede the value to insert.
|
||||
///\param value The value to insert.
|
||||
//*********************************************************************
|
||||
iterator insert(iterator position, const value_type& value)
|
||||
iterator insert(iterator /*position*/, const value_type& value)
|
||||
{
|
||||
// Ignore position provided and just do a normal insert
|
||||
return insert(value);
|
||||
@ -687,7 +687,7 @@ namespace etl
|
||||
///\param position The position that would precede the value to insert.
|
||||
///\param value The value to insert.
|
||||
//*********************************************************************
|
||||
iterator insert(const_iterator position, const value_type& value)
|
||||
iterator insert(const_iterator /*position*/, const value_type& value)
|
||||
{
|
||||
// Ignore position provided and just do a normal insert
|
||||
return insert(value);
|
||||
|
||||
@ -656,7 +656,7 @@ namespace etl
|
||||
///\param position The position that would precede the value to insert.
|
||||
///\param value The value to insert.
|
||||
//*********************************************************************
|
||||
iterator insert(iterator position, const value_type& value)
|
||||
iterator insert(iterator /*position*/, const value_type& value)
|
||||
{
|
||||
// Ignore position provided and just do a normal insert
|
||||
return insert(value);
|
||||
@ -668,7 +668,7 @@ namespace etl
|
||||
///\param position The position that would precede the value to insert.
|
||||
///\param value The value to insert.
|
||||
//*********************************************************************
|
||||
iterator insert(const_iterator position, const value_type& value)
|
||||
iterator insert(const_iterator /*position*/, const value_type& value)
|
||||
{
|
||||
// Ignore position provided and just do a normal insert
|
||||
return insert(value);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user