diff --git a/glm/detail/func_exponential.inl b/glm/detail/func_exponential.inl index 08f3ba4c..75537589 100644 --- a/glm/detail/func_exponential.inl +++ b/glm/detail/func_exponential.inl @@ -45,7 +45,7 @@ namespace detail struct compute_log2 { template - T operator() (T const & Value) const + GLM_FUNC_QUALIFIER T operator() (T const & Value) const { return static_cast(::std::log(Value)) * static_cast(1.4426950408889634073599246810019); } @@ -54,7 +54,7 @@ namespace detail template