Skip to content

Commit

Permalink
Fixed GCC build
Browse files Browse the repository at this point in the history
  • Loading branch information
Groovounet committed Jun 1, 2016
1 parent 9d7b180 commit b357636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glm/detail/func_common.inl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b357636

Please sign in to comment.