// Check for that unicode code point in the subset of characters we
// know about:
- std::unordered_map<unsigned short, unsigned char>::const_iterator it =
- utf8_to_cp1252_values.find(unicode_point);
+ auto it = utf8_to_cp1252_values.find(unicode_point);
if( it == utf8_to_cp1252_values.end() )
{
// That unicode character isn't in our list
position );
// Check for that unicode code point in the subset of characters we
// know about:
- std::unordered_map<unsigned short, unsigned char>::const_iterator it =
- utf8_to_cp1252_values.find(unicode_point);
+ auto it = utf8_to_cp1252_values.find(unicode_point);
if( it == utf8_to_cp1252_values.end() )
{
// That unicode character isn't in our list
{
// Check for that unicode code point in the subset of characters we
// know about:
- std::unordered_map<unsigned short, unsigned char>::const_iterator it
- = utf8_to_cp1252_values.find(unicode_point);
+ auto it = utf8_to_cp1252_values.find(unicode_point);
if( it == utf8_to_cp1252_values.end() )
{
// That unicode character isn't in our list
{
// Check for that unicode code point in the subset of characters we
// know about:
- std::unordered_map<unsigned short, unsigned char>::const_iterator it
- = utf8_to_cp1252_values.find(unicode_point);
+ auto it = utf8_to_cp1252_values.find(unicode_point);
if( it == utf8_to_cp1252_values.end() )
{
// That unicode character isn't in our list