diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-01-23 10:54:21 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-01-23 10:54:21 +0000 |
commit | 5a9919ff35e9f5ae68d2679f1025ce432688dcd8 (patch) | |
tree | b9042e780cce74229d0f68a159da491550617e79 | |
parent | c405c82214349d2735ace341eb5029f10282da5f (diff) | |
download | bcm5719-llvm-5a9919ff35e9f5ae68d2679f1025ce432688dcd8.tar.gz bcm5719-llvm-5a9919ff35e9f5ae68d2679f1025ce432688dcd8.zip |
Fix indentation in ValueObject.cpp (test commit)
llvm-svn: 226906
-rw-r--r-- | lldb/source/Core/ValueObject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 7231f0187ee..3937424ed7e 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -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 |