Fix indentation in ValueObject.cpp (test commit)
authorTamas Berghammer <tberghammer@google.com>
Fri, 23 Jan 2015 10:54:21 +0000 (10:54 +0000)
committerTamas Berghammer <tberghammer@google.com>
Fri, 23 Jan 2015 10:54:21 +0000 (10:54 +0000)
llvm-svn: 226906

lldb/source/Core/ValueObject.cpp

index 7231f01..3937424 100644 (file)
@@ -1507,14 +1507,14 @@ ValueObject::GetValueAsSigned (int64_t fail_value, bool *success)
         {
             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