Skip to content

Commit f875896

Browse files
Debug: wrong formatting to check CI script
Relates-To: MINOR
1 parent 3a50201 commit f875896

File tree

1 file changed

+3
-4
lines changed
  • olp-cpp-sdk-core/include/olp/core/geo/tiling

1 file changed

+3
-4
lines changed

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)