diff options
author | James Cook <james@lindenlab.com> | 2009-12-10 15:49:57 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-12-10 15:49:57 -0800 |
commit | e2fa9eb03a054fbb3fd20e0b105ec0a1174e2113 (patch) | |
tree | ad57930a2b73707c16dc2aa89f620f07f3126c6d /indra/newview/llmaniptranslate.cpp | |
parent | a4446ce416a57ddf096cec3a1fd5cb8e0b9b0e3e (diff) |
Attempt fix mac build problem with anonymous struct
Diffstat (limited to 'indra/newview/llmaniptranslate.cpp')
-rw-r--r-- | indra/newview/llmaniptranslate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmaniptranslate.cpp b/indra/newview/llmaniptranslate.cpp index 8d15ee936c..55d60ad52a 100644 --- a/indra/newview/llmaniptranslate.cpp +++ b/indra/newview/llmaniptranslate.cpp @@ -967,7 +967,7 @@ void LLManipTranslate::highlightManipulators(S32 x, S32 y) LLVector2 mousePos((F32)x - half_width, (F32)y - half_height); LLVector2 mouse_delta; - struct { + struct ClosestToCamera { bool operator()(const ManipulatorHandle& a, const ManipulatorHandle& b) const { return a.mEndPosition.mV[VZ] < b.mEndPosition.mV[VZ]; |