Skip to content

Commit 70550cd

Browse files
committed
1 parent 539b72f commit 70550cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cross-project-tests/debuginfo-tests/llvm-prettyprinters/gdb/llvm-support.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ llvm::MutableArrayRef<int> MutableArrayRef(Array);
1818
llvm::DenseMap<int, int> DenseMap = {{4, 5}, {6, 7}};
1919
llvm::StringMap<int> StringMap = {{"foo", 123}, {"bar", 456}};
2020
llvm::Expected<int> ExpectedValue(8);
21-
llvm::Expected<int> ExpectedError(llvm::createStringError({}, ""));
21+
llvm::Expected<int> ExpectedError(llvm::createStringError(""));
2222
std::optional<int> OptionalValue(9);
2323
std::optional<int> OptionalNone(std::nullopt);
2424
llvm::SmallVector<int, 5> SmallVector = {10, 11, 12};

0 commit comments

Comments
 (0)