mirror of
https://github.com/icaven/glm.git
synced 2025-12-06 16:56:56 +08:00
Tentative fix of GCC build
This commit is contained in:
parent
906efb8045
commit
6b622f2ed4
@ -39,7 +39,7 @@ namespace glm
|
|||||||
template<length_t L, typename T, qualifier Q>
|
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)
|
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)
|
for(length_t i = 0; i < L; ++i)
|
||||||
{
|
{
|
||||||
detail::float_t<T> const a(x[i]);
|
detail::float_t<T> const a(x[i]);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user