mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +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:
@@ -37,7 +37,7 @@ std::unique_ptr<FeatureType> FeatureSource::GetOriginalFeature(uint32_t index) c
|
||||
ASSERT(m_handle.IsAlive(), ());
|
||||
ASSERT(m_vector, ());
|
||||
auto ft = m_vector->GetByIndex(index);
|
||||
ft->SetID({ GetMwmId(), index });
|
||||
ft->SetID({GetMwmId(), index});
|
||||
return ft;
|
||||
}
|
||||
|
||||
@@ -46,9 +46,11 @@ FeatureStatus FeatureSource::GetFeatureStatus(uint32_t index) const
|
||||
return FeatureStatus::Untouched;
|
||||
}
|
||||
|
||||
std::unique_ptr<FeatureType> FeatureSource::GetModifiedFeature(uint32_t index) const { return {}; }
|
||||
std::unique_ptr<FeatureType> FeatureSource::GetModifiedFeature(uint32_t index) const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
void FeatureSource::ForEachAdditionalFeature(m2::RectD const & rect, int scale,
|
||||
std::function<void(uint32_t)> const & fn) const
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user