diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index 7dd982d5..edaa1fc2 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -22,7 +22,7 @@ namespace glm template struct TMin { - T operator()(const T& a, const T& b) { return min(a, b); } + GLM_FUNC_QUALIFIER T operator()(const T& a, const T& b) { return min(a, b); } }; // max @@ -36,7 +36,7 @@ namespace glm template struct TMax { - T operator()(const T& a, const T& b) { return max(a, b); } + GLM_FUNC_QUALIFIER T operator()(const T& a, const T& b) { return max(a, b); } }; // abs