From d7a009eb6780cc6280e53024b6b5e05c674b7fbc Mon Sep 17 00:00:00 2001 From: Orange Date: Thu, 4 Dec 2025 04:47:34 +0300 Subject: [PATCH] oops --- include/omath/collision/epa_algorithm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/omath/collision/epa_algorithm.hpp b/include/omath/collision/epa_algorithm.hpp index ee349fa..d707beb 100644 --- a/include/omath/collision/epa_algorithm.hpp +++ b/include/omath/collision/epa_algorithm.hpp @@ -192,7 +192,7 @@ namespace omath::collision struct HeapCmp final { [[nodiscard]] - static bool operator()(const HeapItem& lhs, const HeapItem& rhs) const noexcept + static bool operator()(const HeapItem& lhs, const HeapItem& rhs) noexcept { return lhs.d > rhs.d; // min-heap by distance }