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

@@ -67,14 +67,12 @@ public:
request.m_langs.insert(StringUtf8Multilang::GetLangIndex(lang));
vector<Id> curr;
MatchFeaturesInTrie(request, m_index.GetRootIterator(),
[](Id const & /* id */) { return true; } /* filter */,
MatchFeaturesInTrie(request, m_index.GetRootIterator(), [](Id const & /* id */) { return true; } /* filter */,
[&curr](Id const & id, bool /* exactMatch */) { curr.push_back(id); } /* toDo */);
base::SortUnique(curr);
vector<Id> intersection;
set_intersection(prev.begin(), prev.end(), curr.begin(), curr.end(),
back_inserter(intersection));
set_intersection(prev.begin(), prev.end(), curr.begin(), curr.end(), back_inserter(intersection));
prev = intersection;
});