Removed incorrect methods from etl::iflat_map::const_iterator class

This commit is contained in:
Casey Smith 2017-04-13 15:41:10 -04:00
parent a3d51f1c79
commit 90e6cff9e7

View File

@ -238,31 +238,16 @@ namespace etl
return temp;
}
reference operator *()
{
return *(*ilookup);
}
const_reference operator *() const
{
return *(*ilookup);
}
pointer operator &()
{
return etl::addressof(*(*ilookup));
}
const_pointer operator &() const
{
return etl::addressof(*(*ilookup));
}
pointer operator ->()
{
return etl::addressof(*(*ilookup));
}
const_pointer operator ->() const
{
return etl::addressof(*(*ilookup));