[haiku-commits] r39353 - haiku/trunk/src/apps/debugger/value/values

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 8 Nov 2010 01:02:25 +0100 (CET)

Author: anevilyak
Date: 2010-11-08 01:02:24 +0100 (Mon, 08 Nov 2010)
New Revision: 39353
Changeset: http://dev.haiku-os.org/changeset/39353

Modified:
   haiku/trunk/src/apps/debugger/value/values/FloatValue.cpp
Log:
Cleanup, no functional change.



Modified: haiku/trunk/src/apps/debugger/value/values/FloatValue.cpp
===================================================================
--- haiku/trunk/src/apps/debugger/value/values/FloatValue.cpp   2010-11-07 
22:59:58 UTC (rev 39352)
+++ haiku/trunk/src/apps/debugger/value/values/FloatValue.cpp   2010-11-08 
00:02:24 UTC (rev 39353)
@@ -47,6 +47,6 @@
 bool
 FloatValue::operator==(const Value& other) const
 {
-       const FloatValue* otherInt = dynamic_cast<const FloatValue*>(&other);
-       return otherInt != NULL ? fValue == otherInt->fValue : false;
+       const FloatValue* otherFloat = dynamic_cast<const FloatValue*>(&other);
+       return otherFloat != NULL ? fValue == otherFloat->fValue : false;
 }


Other related posts:

  • » [haiku-commits] r39353 - haiku/trunk/src/apps/debugger/value/values - anevilyak