Format all C++ and Java code via clang-format

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-08-17 14:32:37 +07:00
parent 9f0290c0ec
commit bfffa1fff4
2169 changed files with 56441 additions and 64188 deletions

View File

@@ -23,8 +23,8 @@ std::string GlyphUsageTracker::GlyphUsageStatistic::ToString() const
ss << " Unexpected glyphs: {\n";
for (auto const & it : m_unexpectedGlyphs)
{
ss << " glyph = " << std::hex << static_cast<uint32_t>(it.first) << std::dec << ", unique usages = " << it.second.m_counter
<< ", group = " << it.second.m_group << ", expected groups = { ";
ss << " glyph = " << std::hex << static_cast<uint32_t>(it.first) << std::dec
<< ", unique usages = " << it.second.m_counter << ", group = " << it.second.m_group << ", expected groups = { ";
for (auto const & gr : it.second.m_expectedGroups)
ss << gr << " ";