From 90e6cff9e7362ecf3a087908a1ff000f404e011f Mon Sep 17 00:00:00 2001 From: Casey Smith Date: Thu, 13 Apr 2017 15:41:10 -0400 Subject: [PATCH] Removed incorrect methods from etl::iflat_map::const_iterator class --- src/iflat_map.h | 15 --------------- 1 file changed, 15 deletions(-) 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));