Tentative fix of GCC build

master
Christophe Riccio ago%!(EXTRA string=7 years)
parent 906efb8045
commit 6b622f2ed4
  1. 2
      glm/ext/vector_relational.inl

@ -39,7 +39,7 @@ namespace glm
template<length_t L, typename T, qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, int, Q> const& MaxULPs)
{
vec<L, bool, Q> Result;
vec<L, bool, Q> Result(false);
for(length_t i = 0; i < L; ++i)
{
detail::float_t<T> const a(x[i]);

Loading…
Cancel
Save