Skip to content

Commit

Permalink
format check
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan24680 committed Feb 12, 2025
1 parent 988ba8d commit e42d9d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/engine/SpatialJoinAlgorithms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,8 @@ Result SpatialJoinAlgorithms::BoundingBoxAlgorithm() {

bool operator==(const AddedPair& other) const = default;
auto operator<=>(const AddedPair& other) const {
return (rowLeft_ == other.rowLeft_) ? (rowRight_ <=> other.rowRight_) : (rowLeft_ <=> other.rowLeft_);
return (rowLeft_ == other.rowLeft_) ? (rowRight_ <=> other.rowRight_)
: (rowLeft_ <=> other.rowLeft_);
}
};

Expand Down

0 comments on commit e42d9d0

Please sign in to comment.