Skip to content

Commit 5cfd97e

Browse files
committed
Fix clang-format errors.
1 parent b6051ed commit 5cfd97e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/source/ValueObject/ValueObject.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3348,8 +3348,8 @@ lldb::ValueObjectSP ValueObject::CastToBasicType(CompilerType type) {
33483348
}
33493349

33503350
Status error = Status::FromErrorString("Unable to perform requested cast");
3351-
return ValueObjectConstResult::Create(
3352-
exe_ctx.GetBestExecutionContextScope(), error.Clone());
3351+
return ValueObjectConstResult::Create(exe_ctx.GetBestExecutionContextScope(),
3352+
error.Clone());
33533353
}
33543354

33553355
lldb::ValueObjectSP ValueObject::CastToEnumType(CompilerType type) {
@@ -3416,8 +3416,8 @@ lldb::ValueObjectSP ValueObject::CastToEnumType(CompilerType type) {
34163416
}
34173417
}
34183418
Status error = Status::FromErrorString("Cannot perform requested cast");
3419-
return ValueObjectConstResult::Create(
3420-
exe_ctx.GetBestExecutionContextScope(), error.Clone());
3419+
return ValueObjectConstResult::Create(exe_ctx.GetBestExecutionContextScope(),
3420+
error.Clone());
34213421
}
34223422

34233423
ValueObject::EvaluationPoint::EvaluationPoint() : m_mod_id(), m_exe_ctx_ref() {}

0 commit comments

Comments
 (0)