Skip to content

Commit

Permalink
Fixed unordered_map iterator operator* return type
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Sep 16, 2019
1 parent 2bc97e5 commit 3116104
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/etl/unordered_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ namespace etl
}

//*********************************
std::pair<const TKey, T> operator *()
reference operator *()
{
return inode->key_value_pair;
}
Expand Down
2 changes: 1 addition & 1 deletion include/etl/unordered_multimap.h
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ namespace etl
}

//*********************************
std::pair<const TKey, T> operator *()
reference operator *()
{
return inode->key_value_pair;
}
Expand Down
2 changes: 1 addition & 1 deletion include/etl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SOFTWARE.

#define ETL_VERSION_MAJOR 14
#define ETL_VERSION_MINOR 29
#define ETL_VERSION_PATCH 3
#define ETL_VERSION_PATCH 4

#define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) ETL_STRINGIFY(ETL_VERSION_MINOR) ETL_STRINGIFY(ETL_VERSION_PATCH)
#define ETL_VERSION_W ETL_WIDE_STRING(ETL_CONCAT(ETL_CONCAT(ETL_VERSION_MAJOR, ETL_VERSION_MINOR), ETL_VERSION_PATCH))
Expand Down
4 changes: 4 additions & 0 deletions support/Release notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
===============================================================================
14.29.4
Fixed unordered_map iterator operator* return type

===============================================================================
14.29.3
Minor updatess for etl::delegate
Expand Down

0 comments on commit 3116104

Please sign in to comment.