mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Merge pull request #1146 from stephen-hqxu/cuda-constexpr-abs
Fix: CUDA compiler error on constexpr abs function #1146
This commit is contained in:
commit
65c16d5da1
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ namespace detail
|
|||
template<>
|
||||
struct compute_abs<float, true>
|
||||
{
|
||||
GLM_FUNC_QUALIFIER GLM_CONSTEXPR static float call(float x)
|
||||
GLM_FUNC_QUALIFIER static float call(float x)
|
||||
{
|
||||
return fabsf(x);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue