diff --git a/src/iflat_map.h b/src/iflat_map.h index 21798917..2a1bfcef 100644 --- a/src/iflat_map.h +++ b/src/iflat_map.h @@ -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));