Fix unused warning

This commit is contained in:
Filip Sykala 2022-01-04 14:54:23 +01:00
parent 5869f86d97
commit c9aa8b8fa5

View file

@ -60,7 +60,8 @@ std::optional<Emboss::Glyph> Private::get_glyph(stbtt_fontinfo &font_info, int u
wchar_t wchar = static_cast<wchar_t>(unicode_letter);
std::cerr << "Character unicode letter ("
<< "decimal value = " << std::dec << unicode_letter << ", "
<< "hexadecimal value = U+" << std::hex << unicode_letter << std::dec
<< "hexadecimal value = U+" << std::hex << unicode_letter << std::dec << ", "
<< "wchar value = " << wchar
<< ") is NOT defined inside of the font. \n";
return {};
}