mirror of
https://github.com/g-truc/glm.git
synced 2025-04-13 08:43:00 +00:00
Fixed GCC build
This commit is contained in:
parent
9d7b180596
commit
b357636d0f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue