[Lldb-commits] [lldb] r226906 - Fix indentation in ValueObject.cpp (test commit)

Tamas Berghammer tberghammer at google.com
Fri Jan 23 02:54:22 PST 2015


Author: tberghammer
Date: Fri Jan 23 04:54:21 2015
New Revision: 226906

URL: http://llvm.org/viewvc/llvm-project?rev=226906&view=rev
Log:
Fix indentation in ValueObject.cpp (test commit)

Modified:
    lldb/trunk/source/Core/ValueObject.cpp

Modified: lldb/trunk/source/Core/ValueObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ValueObject.cpp?rev=226906&r1=226905&r2=226906&view=diff
==============================================================================
--- lldb/trunk/source/Core/ValueObject.cpp (original)
+++ lldb/trunk/source/Core/ValueObject.cpp Fri Jan 23 04:54:21 2015
@@ -1507,14 +1507,14 @@ ValueObject::GetValueAsSigned (int64_t f
         {
             if (success)
                 *success = true;
-                return scalar.SLongLong(fail_value);
+            return scalar.SLongLong(fail_value);
         }
         // fallthrough, otherwise...
     }
     
     if (success)
         *success = false;
-        return fail_value;
+    return fail_value;
 }
 
 // if any more "special cases" are added to ValueObject::DumpPrintableRepresentation() please keep





More information about the lldb-commits mailing list