Skip to content

Commit b9b5e80

Browse files
committed
More clang-format fixes.
1 parent 9d8bbf2 commit b9b5e80

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

lldb/source/ValueObject/DILEval.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -347,12 +347,10 @@ Interpreter::Visit(const ArraySubscriptNode *node) {
347347
is_objc_pointer = false;
348348

349349
if (!m_use_synthetic && is_objc_pointer) {
350-
std::string err_msg =
351-
llvm::formatv(
352-
"\"({0}) {1}\" is an Objective-C pointer, and cannot be "
353-
"subscripted",
354-
base->GetTypeName().AsCString("<invalid type>"),
355-
var_expr_path_strm.GetData());
350+
std::string err_msg = llvm::formatv(
351+
"\"({0}) {1}\" is an Objective-C pointer, and cannot be subscripted",
352+
base->GetTypeName().AsCString("<invalid type>"),
353+
var_expr_path_strm.GetData());
356354
return llvm::make_error<DILDiagnosticError>(m_expr, std::move(err_msg),
357355
node->GetLocation());
358356
}

0 commit comments

Comments
 (0)