diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2022-09-29 13:23:11 -0700 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-09-29 13:24:38 -0700 |
commit | 5c83ac76b5439a72db0d1b7ac3a747b19d8e048a (patch) | |
tree | 64d3d89a1bfde32dcb26f7c20040fc294244b6f1 /indra/llmath | |
parent | 332ddc67de2de245a52d9db3be20f4ba8051f166 (diff) |
fix for mac build breakage DRTVWR-559
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/v3color.h | 5 | ||||
-rw-r--r-- | indra/llmath/v3math.h | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/indra/llmath/v3color.h b/indra/llmath/v3color.h index c3c6ae2242..7d825b2b94 100644 --- a/indra/llmath/v3color.h +++ b/indra/llmath/v3color.h @@ -498,9 +498,4 @@ inline const LLColor3 linearColor3(const T& a) { return linearColor3(a.mV); } -template<class T> -inline const LLVector3 linearColor3v(const T& a) { - return LLVector3(linearColor3(a.mV).mV); -} - #endif diff --git a/indra/llmath/v3math.h b/indra/llmath/v3math.h index 068f489020..48c5c21863 100644 --- a/indra/llmath/v3math.h +++ b/indra/llmath/v3math.h @@ -609,4 +609,9 @@ inline std::ostream& operator<<(std::ostream& s, const LLVector3 &a) return s; } +template<class T> +inline const LLVector3 linearColor3v(const T& a) { + return LLVector3(linearColor3(a.mV).mV); +} + #endif |