mirror of
https://github.com/g-truc/glm.git
synced 2025-04-09 15:07:03 +00:00
Fixed nextafter for float on Intel compiler
This commit is contained in:
parent
535f67e45e
commit
874a675bb9
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ namespace detail
|
|||
|
||||
#pragma warning(pop)
|
||||
|
||||
#if(GLM_COMPILER & GLM_COMPILER_VC)
|
||||
#if(GLM_COMPILER & GLM_COMPILER_VC || GLM_COMPILER & GLM_COMPILER_INTEL)
|
||||
# define GLM_NEXT_AFTER_FLT(x, toward) glm::detail::nextafterf((x), (toward))
|
||||
# define GLM_NEXT_AFTER_DBL(x, toward) _nextafter((x), (toward))
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue