Fixed GCC warnings

This commit is contained in:
John Wellbelove 2016-12-28 12:52:31 +00:00
parent 430248fdf1
commit 4b9e9cd651
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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);