Merge pull request #23 from clegg89/development

Removed incorrect methods from etl::iflat_map::const_iterator class
This commit is contained in:
John Wellbelove 2017-04-14 09:59:36 +01:00 committed by GitHub
commit 1b873a0037

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