mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Fixing minor compiler issue
This commit is contained in:
parent
8a34283c87
commit
9ce038104c
1 changed files with 2 additions and 1 deletions
|
@ -287,7 +287,8 @@ namespace detail
|
|||
std::numeric_limits<genFIType>::is_iec559 || (std::numeric_limits<genFIType>::is_signed && std::numeric_limits<genFIType>::is_integer),
|
||||
"'sign' only accept signed inputs");
|
||||
|
||||
return detail::compute_sign<1, genFIType, defaultp, std::numeric_limits<genFIType>::is_iec559, highp>::call(vec<1, genFIType>(x)).x;
|
||||
return detail::compute_sign<1, genFIType, defaultp,
|
||||
std::numeric_limits<genFIType>::is_iec559, detailed::is_aligned<highp>::value>::call(vec<1, genFIType>(x)).x;
|
||||
}
|
||||
|
||||
template<length_t L, typename T, qualifier Q>
|
||||
|
|
Loading…
Add table
Reference in a new issue