We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d8bbf2 commit b9b5e80Copy full SHA for b9b5e80
lldb/source/ValueObject/DILEval.cpp
@@ -347,12 +347,10 @@ Interpreter::Visit(const ArraySubscriptNode *node) {
347
is_objc_pointer = false;
348
349
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());
+ std::string err_msg = llvm::formatv(
+ "\"({0}) {1}\" is an Objective-C pointer, and cannot be subscripted",
+ base->GetTypeName().AsCString("<invalid type>"),
+ var_expr_path_strm.GetData());
356
return llvm::make_error<DILDiagnosticError>(m_expr, std::move(err_msg),
357
node->GetLocation());
358
}
0 commit comments