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 5b93bd0 commit 1e57a22Copy full SHA for 1e57a22
common/math/geometry/include/geometry/vector3/operator.hpp
@@ -137,7 +137,7 @@ template <
137
typename T, typename U,
138
std::enable_if_t<std::conjunction_v<IsLikeVector3<T>, IsLikeVector3<U>>, std::nullptr_t> =
139
nullptr>
140
-auto operator==(T & a, const U & b) -> bool
+auto operator==(const T & a, const U & b) -> bool
141
{
142
constexpr decltype(a.x) e = std::numeric_limits<decltype(a.x)>::epsilon();
143
return (std::abs(a.x - b.x) < e) && (std::abs(a.y - b.y) < e) && (std::abs(a.z - b.z) < e);
0 commit comments