summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llselectmgr.cpp8
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) \