mirror of
https://github.com/g-truc/glm.git
synced 2025-04-08 06:43:10 +00:00
Fixed template parameter name
This commit is contained in:
parent
f6277af56f
commit
f228d42910
1 changed files with 3 additions and 3 deletions
|
@ -1075,7 +1075,7 @@ namespace detail
|
|||
)
|
||||
{
|
||||
GLM_STATIC_ASSERT(
|
||||
std::numeric_limits<genType>::is_iec559,
|
||||
std::numeric_limits<T>::is_iec559,
|
||||
"'frexp' only accept floating-point inputs");
|
||||
|
||||
return detail::tvec2<T, P>(
|
||||
|
@ -1091,7 +1091,7 @@ namespace detail
|
|||
)
|
||||
{
|
||||
GLM_STATIC_ASSERT(
|
||||
std::numeric_limits<genType>::is_iec559,
|
||||
std::numeric_limits<T>::is_iec559,
|
||||
"'frexp' only accept floating-point inputs");
|
||||
|
||||
return detail::tvec3<T, P>(
|
||||
|
@ -1108,7 +1108,7 @@ namespace detail
|
|||
)
|
||||
{
|
||||
GLM_STATIC_ASSERT(
|
||||
std::numeric_limits<genType>::is_iec559,
|
||||
std::numeric_limits<T>::is_iec559,
|
||||
"'frexp' only accept floating-point inputs");
|
||||
|
||||
return detail::tvec4<T, P>(
|
||||
|
|
Loading…
Add table
Reference in a new issue