mirror of
https://github.com/g-truc/glm.git
synced 2025-04-04 21:15:03 +00:00
Add GLM_FUNC_QUALIFIER to TMin and TMax operator overloads
This commit is contained in:
parent
45008b225e
commit
c5eaa18942
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ namespace glm
|
|||
|
||||
template<typename T>
|
||||
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<typename T>
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue