Removed surplus 'typename'

This commit is contained in:
John Wellbelove 2017-03-11 16:27:02 +00:00
parent 4ad9e0dc6e
commit 452a13a168

View File

@ -463,7 +463,7 @@ namespace etl
//*********************************************************************
const mapped_type& at(key_value_parameter_t key) const
{
typename const_iterator i_element = lower_bound(key);
const_iterator i_element = lower_bound(key);
ETL_ASSERT(i_element != end(), ETL_ERROR(flat_map_out_of_bounds));