From 5c83ac76b5439a72db0d1b7ac3a747b19d8e048a Mon Sep 17 00:00:00 2001 From: Brad Kittenbrink Date: Thu, 29 Sep 2022 13:23:11 -0700 Subject: fix for mac build breakage DRTVWR-559 --- indra/llmath/v3color.h | 5 ----- 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 -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 +inline const LLVector3 linearColor3v(const T& a) { + return LLVector3(linearColor3(a.mV).mV); +} + #endif -- cgit v1.2.3