Spacing fix

This commit is contained in:
Nathan Woods 2017-01-14 10:56:57 -05:00
parent e38b9b63ba
commit 36033a2f98

View File

@ -69,7 +69,7 @@ void imgtool::simple_charconverter::from_utf8(std::ostream &dest, const char *sr
std::string normalized_src = normalize_unicode(src, src_length, m_norm);
auto iter = normalized_src.begin();
while(iter != normalized_src.end())
while (iter != normalized_src.end())
{
// get the next character
char32_t ch;