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

@@ -4,8 +4,7 @@
namespace generator
{
TranslatorsPool::TranslatorsPool(std::shared_ptr<TranslatorInterface> const & original,
size_t threadCount)
TranslatorsPool::TranslatorsPool(std::shared_ptr<TranslatorInterface> const & original, size_t threadCount)
: m_threadPool(threadCount)
{
CHECK_GREATER_OR_EQUAL(threadCount, 1, ());
@@ -62,7 +61,8 @@ bool TranslatorsPool::Finish()
state->left = std::move(left);
state->right = std::move(right);
queue.Push(pool.Submit([state = std::move(state)]() mutable {
queue.Push(pool.Submit([state = std::move(state)]() mutable
{
auto leftTranslator = state->left.get();
auto rigthTranslator = state->right.get();
rigthTranslator->Finish();