mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-02 11:03:44 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user