Remove *constexpr* from *compute_abs* on CUDA

This commit is contained in:
Stephen Xu 2023-03-30 19:21:23 +01:00
parent efec5db081
commit f8a9e5043f
No known key found for this signature in database
GPG Key ID: F7A92E1474FAB7BF

View File

@ -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);
}