From e42d9d040bda33a56968b7b2e7fe5067af4f5b2b Mon Sep 17 00:00:00 2001 From: Jonathan Zeller Date: Wed, 12 Feb 2025 21:26:25 +0100 Subject: [PATCH] format check --- src/engine/SpatialJoinAlgorithms.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/SpatialJoinAlgorithms.cpp b/src/engine/SpatialJoinAlgorithms.cpp index 9ba344d7d7..198b585baa 100644 --- a/src/engine/SpatialJoinAlgorithms.cpp +++ b/src/engine/SpatialJoinAlgorithms.cpp @@ -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_); } };