mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 13:53:37 +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:
@@ -32,12 +32,11 @@ template <typename Cont>
|
||||
Entries GetEntries(Cont const & cont)
|
||||
{
|
||||
Entries res;
|
||||
cont.ForEachEntry([&res](uint32_t const fid, base::GeoObjectId const & gid) {
|
||||
res.emplace_back(std::make_pair(fid, gid));
|
||||
});
|
||||
cont.ForEachEntry([&res](uint32_t const fid, base::GeoObjectId const & gid)
|
||||
{ res.emplace_back(std::make_pair(fid, gid)); });
|
||||
std::sort(res.begin(), res.end());
|
||||
return res;
|
||||
};
|
||||
}
|
||||
|
||||
class FeatureIdToGeoObjectIdTest : public TestWithCustomMwms
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user