From 5c06337b7ef396988c5eb9cc32e120ebbe4effc5 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Mon, 8 Nov 2010 00:02:24 +0000 Subject: [PATCH] Cleanup, no functional change. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39353 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/debugger/value/values/FloatValue.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/debugger/value/values/FloatValue.cpp b/src/apps/debugger/value/values/FloatValue.cpp index 52f0cc0b6b..aba19862ea 100644 --- a/src/apps/debugger/value/values/FloatValue.cpp +++ b/src/apps/debugger/value/values/FloatValue.cpp @@ -47,6 +47,6 @@ FloatValue::ToVariant(BVariant& _value) const bool FloatValue::operator==(const Value& other) const { - const FloatValue* otherInt = dynamic_cast(&other); - return otherInt != NULL ? fValue == otherInt->fValue : false; + const FloatValue* otherFloat = dynamic_cast(&other); + return otherFloat != NULL ? fValue == otherFloat->fValue : false; }