From f61474fe5b3bd616fdd2d92fbb3478891bb60fb1 Mon Sep 17 00:00:00 2001
From: Dave Houlton <euclid@lindenlab.com>
Date: Fri, 27 Mar 2020 11:24:22 -0600
Subject: [PATCH] DRTVWR-440, quick fix, add return value - needed for Mac
 build

---
 indra/llmath/v4color.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/indra/llmath/v4color.h b/indra/llmath/v4color.h
index 00fc9553844..175edf14714 100644
--- a/indra/llmath/v4color.h
+++ b/indra/llmath/v4color.h
@@ -676,6 +676,8 @@ inline const LLColor4 linearColor4(const LLColor4 &a)
     linearColor.mV[1] = sRGBtoLinear(a.mV[1]);
     linearColor.mV[2] = sRGBtoLinear(a.mV[2]);
     linearColor.mV[3] = a.mV[3];
+
+    return linearColor;
 }
 
 #endif
-- 
GitLab