Skip to content

Commit 9ccf1ba

Browse files
fixup! [lldb] upgrade HandleFrameFormatVariable callees to llvm::Expected
1 parent fdff64c commit 9ccf1ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ static bool PrintDemangledArgumentList(Stream &s, const SymbolContext &sc) {
360360

361361
auto info_or_err = GetAndValidateInfo(sc);
362362
if (!info_or_err) {
363-
info_or_err.takeError();
363+
llvm::consumeError(info_or_err.takeError());
364364
return false;
365365
}
366366
auto [demangled_name, info] = *info_or_err;

0 commit comments

Comments
 (0)