diff options
| author | Graham Linden <graham@lindenlab.com> | 2018-08-01 00:35:33 +0100 | 
|---|---|---|
| committer | Graham Linden <graham@lindenlab.com> | 2018-08-01 00:35:33 +0100 | 
| commit | 4cd59b3d8e43870264717ec145da14e34c6c717a (patch) | |
| tree | f6ee06eee91c2ea1949bcda10e60be5f834aa401 | |
| parent | ee91efb05377aa94c4d223d61ff941f2cdedde76 (diff) | |
Remove debug code for conditional BP.
| -rw-r--r-- | indra/newview/llselectmgr.cpp | 8 | 
1 files changed, 1 insertions, 7 deletions
diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index 792b55e5bb..245d248390 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -7942,13 +7942,7 @@ bool LLCheckIdenticalFunctor<F32>::same(const F32& a, const F32& b, const F32& t  {      F32 delta = (a - b);      F32 abs_delta = fabs(delta); -    bool is_samish = abs_delta <= tolerance; -    if (!is_samish) -    { -        int q = 0; -        q++; -    } -    return is_samish; +    return abs_delta <= tolerance;  }  #define DEF_DUMMY_CHECK_FUNCTOR(T)                                                  \  | 
