mirror of
https://github.com/g-truc/glm.git
synced 2025-04-15 01:18:14 +00:00
Added Intel compiler support
This commit is contained in:
parent
e8cbc50343
commit
1822f9dd04
1 changed files with 4 additions and 0 deletions
|
@ -816,6 +816,8 @@ namespace detail
|
|||
# else
|
||||
return std::isnan(x) != 0;
|
||||
# endif
|
||||
# elif(GLM_COMPILER & GLM_COMPILER_INTEL)
|
||||
return isnan(x) != 0;
|
||||
# else
|
||||
return std::isnan(x) != 0;
|
||||
# endif
|
||||
|
@ -871,6 +873,8 @@ namespace detail
|
|||
# else
|
||||
return std::isinf(x) != 0;
|
||||
# endif
|
||||
# elif(GLM_COMPILER & GLM_COMPILER_INTEL)
|
||||
return isinf(x) != 0;
|
||||
# else
|
||||
return std::isinf(x) != 0;
|
||||
# endif
|
||||
|
|
Loading…
Add table
Reference in a new issue