We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78049f1 commit 5db3b61Copy full SHA for 5db3b61
glm/detail/func_common.inl
@@ -22,7 +22,7 @@ namespace glm
22
23
template<typename T>
24
struct TMin {
25
- 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); }
26
};
27
28
// max
@@ -36,7 +36,7 @@ namespace glm
36
37
38
struct TMax {
39
- 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); }
40
41
42
// abs
0 commit comments