Fixed GCC build

This commit is contained in:
Christophe Riccio 2016-06-01 20:03:36 +02:00
parent 9d7b180596
commit b357636d0f

View file

@ -418,7 +418,7 @@ namespace detail
GLM_FUNC_QUALIFIER vecType<T, P> ceil(vecType<T, P> const & x)
{
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'ceil' only accept floating-point inputs");
return detail::compute_ceil<T, P, vecType>::call(x);
return detail::compute_ceil<T, P, vecType, detail::is_aligned<P>::value>::call(x);
}
// fract