diff options
author | Graham Linden <graham@lindenlab.com> | 2019-08-28 15:27:23 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-08-28 15:27:23 -0700 |
commit | c5724023dd80a6c8a77d15650161e7cf67f8650e (patch) | |
tree | 38d8402fda01860c23933520d9442858ff0f82e0 /indra/newview/lllegacyatmospherics.h | |
parent | 5b1dd8a18cbc221e768095f77f78072ee19c1e64 (diff) |
Work around issue with friend ops not accepting default params on Clang.
Diffstat (limited to 'indra/newview/lllegacyatmospherics.h')
-rw-r--r-- | indra/newview/lllegacyatmospherics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lllegacyatmospherics.h b/indra/newview/lllegacyatmospherics.h index 5dd8c41a32..03c8efb91a 100644 --- a/indra/newview/lllegacyatmospherics.h +++ b/indra/newview/lllegacyatmospherics.h @@ -208,7 +208,7 @@ public: friend bool operator==(const AtmosphericsVars& a, const AtmosphericsVars& b); // returns true if values are within treshold of each other. - friend bool aproximatelyEqual(const AtmosphericsVars& a, const AtmosphericsVars& b, const F32 fraction_treshold = 0.0005); + friend bool approximatelyEqual(const AtmosphericsVars& a, const AtmosphericsVars& b, const F32 fraction_treshold); LLColor3 hazeColor; LLColor3 hazeColorBelowCloud; |