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

@@ -28,8 +28,7 @@ class Translator : public TranslatorInterface
public:
explicit Translator(std::shared_ptr<FeatureProcessorInterface> const & processor,
std::shared_ptr<cache::IntermediateData> const & cache,
std::shared_ptr<FeatureMakerBase> const & maker,
std::shared_ptr<FilterInterface> const & filter,
std::shared_ptr<FeatureMakerBase> const & maker, std::shared_ptr<FilterInterface> const & filter,
std::shared_ptr<CollectorInterface> const & collector);
explicit Translator(std::shared_ptr<FeatureProcessorInterface> const & processor,
std::shared_ptr<cache::IntermediateData> const & cache,
@@ -55,10 +54,7 @@ protected:
return std::make_shared<T>(processor, cache, featureMaker, filter, collector);
}
void MergeIntoBase(Translator & other) const
{
other.m_collector->Merge(*m_collector);
}
void MergeIntoBase(Translator & other) const { other.m_collector->Merge(*m_collector); }
std::shared_ptr<FilterInterface> m_filter;
std::shared_ptr<CollectorInterface> m_collector;