We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a50201 commit f875896Copy full SHA for f875896
olp-cpp-sdk-core/include/olp/core/geo/tiling/TileKey.h
@@ -115,10 +115,9 @@ class CORE_API TileKey {
115
* instead (`ToQuadKey64()`).
116
*/
117
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_;
+ return level_ != other.level_ ? level_ < other.level_
+ : row_ != other.row_ ? row_ < other.row_
+ : column_ < other.column_;
122
}
123
124
/**
0 commit comments