Skip to content
Snippets Groups Projects
Commit 5c83ac76 authored by Brad Kittenbrink's avatar Brad Kittenbrink
Browse files

fix for mac build breakage DRTVWR-559

parent 332ddc67
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -498,9 +498,4 @@ inline const LLColor3 linearColor3(const T& a) { ...@@ -498,9 +498,4 @@ inline const LLColor3 linearColor3(const T& a) {
return linearColor3(a.mV); return linearColor3(a.mV);
} }
template<class T>
inline const LLVector3 linearColor3v(const T& a) {
return LLVector3(linearColor3(a.mV).mV);
}
#endif #endif
...@@ -609,4 +609,9 @@ inline std::ostream& operator<<(std::ostream& s, const LLVector3 &a) ...@@ -609,4 +609,9 @@ inline std::ostream& operator<<(std::ostream& s, const LLVector3 &a)
return s; return s;
} }
template<class T>
inline const LLVector3 linearColor3v(const T& a) {
return LLVector3(linearColor3(a.mV).mV);
}
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment