Skip to content

v0.2.54..v0.2.55 changeset WayMatchStringMerger.h

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/WayMatchStringMerger.h b/hoot-core/src/main/cpp/hoot/core/algorithms/WayMatchStringMerger.h
index 8eaf04e..cf6194a 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/WayMatchStringMerger.h
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/WayMatchStringMerger.h
@@ -106,9 +106,9 @@ public:
     inline bool operator()(const WayMatchStringMerger::SublineMappingPtr &t1,
                            const WayMatchStringMerger::SublineMappingPtr &t2) const
     {
-        return
-          std::min(t1->getStart(_way), t1->getEnd(_way)) <
-          std::min(t2->getStart(_way), t2->getEnd(_way));
+      return
+        std::min(t1->getStart(_way), t1->getEnd(_way)) <
+        std::min(t2->getStart(_way), t2->getEnd(_way));
     }
 
   private:
Clone this wiki locally