Removed surplus 'typename'

This commit is contained in:
John Wellbelove 2017-03-11 16:27:02 +00:00
parent c5beaf7ac2
commit 56286f4cb8

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