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

9
libs/drape_frontend/tile_key.hpp Executable file → Normal file
View File

@@ -20,8 +20,8 @@ struct TileKey
// Operators < and == do not consider parameter m_generation.
// m_generation is used to determine a generation of geometry for this tile key.
// Geometry with different generations must be able to group by (x, y, zoomlevel).
bool operator < (TileKey const & other) const;
bool operator == (TileKey const & other) const;
bool operator<(TileKey const & other) const;
bool operator==(TileKey const & other) const;
// These methods implement strict comparison of tile keys. It's necessary to merger of
// batches which must not merge batches with different m_generation.
@@ -48,10 +48,7 @@ struct TileKey
struct TileKeyStrictComparator
{
bool operator() (TileKey const & lhs, TileKey const & rhs) const
{
return lhs.LessStrict(rhs);
}
bool operator()(TileKey const & lhs, TileKey const & rhs) const { return lhs.LessStrict(rhs); }
};
std::string DebugPrint(TileKey const & key);