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

@@ -123,14 +123,12 @@ UNIT_TEST(MultilangString_Unique)
UNIT_TEST(MultilangString_LangNames)
{
// It is important to compare the contents of the strings, and not just pointers
TEST_EQUAL(string("Беларуская"),
StringUtf8Multilang::GetLangNameByCode(StringUtf8Multilang::GetLangIndex("be")), ());
TEST_EQUAL(string("Беларуская"), StringUtf8Multilang::GetLangNameByCode(StringUtf8Multilang::GetLangIndex("be")), ());
auto const & langs = StringUtf8Multilang::GetSupportedLanguages();
// Using size_t workaround, because our logging/testing macroses do not support passing POD types
// by value, only by reference. And our constant is a constexpr.
TEST_LESS_OR_EQUAL(langs.size(), static_cast<size_t>(StringUtf8Multilang::kMaxSupportedLanguages),
());
TEST_LESS_OR_EQUAL(langs.size(), static_cast<size_t>(StringUtf8Multilang::kMaxSupportedLanguages), ());
auto const international = StringUtf8Multilang::GetLangIndex("int_name");
TEST_EQUAL(langs[international].m_code, string("int_name"), ());
}
@@ -201,8 +199,8 @@ UNIT_TEST(MultilangString_ForEachLanguage)
UNIT_TEST(MultilangString_RemoveString)
{
auto testRemove = [](vector<pair<uint8_t, string>> const & strings,
set<uint8_t> const & codesToRemove) {
auto testRemove = [](vector<pair<uint8_t, string>> const & strings, set<uint8_t> const & codesToRemove)
{
StringUtf8Multilang str;
for (auto const & s : strings)
str.AddString(s.first, s.second);
@@ -233,21 +231,15 @@ UNIT_TEST(MultilangString_RemoveString)
}
// No extra languages or other data damage.
str.ForEach([&](uint8_t lang, auto const &) {
TEST(base::FindIf(strings, [&lang](auto const & s) { return s.first == lang; }) !=
strings.end(),
());
str.ForEach([&](uint8_t lang, auto const &)
{
TEST(base::FindIf(strings, [&lang](auto const & s) { return s.first == lang; }) != strings.end(), ());
TEST(codesToRemove.find(lang) == codesToRemove.end(), ());
});
};
vector<pair<uint8_t, string>> strings = {{0, "aaa"},
{1, "bbb"},
{2, "ccc"},
{9, "ddd"},
{17, "eee"},
{27, "fff"},
{37, "ggg"}};
vector<pair<uint8_t, string>> strings = {{0, "aaa"}, {1, "bbb"}, {2, "ccc"}, {9, "ddd"},
{17, "eee"}, {27, "fff"}, {37, "ggg"}};
testRemove(strings, {0});
testRemove(strings, {1});