Skip to content

Commit 564f2c4

Browse files
Debug: wrong formatting to check CI script
Relates-To: MINOR
1 parent 5fb45ed commit 564f2c4

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

  • olp-cpp-sdk-core/include/olp/core/geo/tiling

olp-cpp-sdk-core/include/olp/core/geo/tiling/TileKey.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,9 @@ class CORE_API TileKey {
115115
* instead (`ToQuadKey64()`).
116116
*/
117117
constexpr bool operator<(const TileKey& other) const {
118-
return level_ != other.level_
119-
? level_ < other.level_
120-
: row_ != other.row_ ? row_ < other.row_
121-
: column_ < other.column_;
118+
return level_ != other.level_ ? level_ < other.level_
119+
: row_ != other.row_ ? row_ < other.row_
120+
: column_ < other.column_;
122121
}
123122

124123
/**

0 commit comments

Comments
 (0)