diff options
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 |