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 2ddf29b commit 3570288Copy full SHA for 3570288
include/omath/collision/epa_algorithm.hpp
@@ -187,9 +187,9 @@ namespace omath::collision
187
struct HeapCmp final
188
{
189
[[nodiscard]]
190
- static bool operator()(const HeapItem& lhs, const HeapItem& rhs) noexcept
+ static bool operator()(const HeapItem& left, const HeapItem& right) noexcept
191
192
- return lhs.d > rhs.d; // min-heap by distance
+ return left.d > right.d; // min-heap by distance
193
}
194
};
195
0 commit comments