Skip to content

Commit

Permalink
Attempt to fix buildbot after r353679 llvm#2
Browse files Browse the repository at this point in the history
llvm-svn: 353683
  • Loading branch information
eleviant committed Feb 11, 2019
1 parent e848d42 commit 6bcf635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/include/llvm/Support/Error.h
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ class FileError final : public ErrorInfo<FileError> {
private:
FileError(const Twine &F, std::unique_ptr<ErrorInfoBase> E) {
assert(E && "Cannot create FileError from Error success value.");
assert(!F.isEmpty() &&
assert(!F.isTriviallyEmpty() &&
"The file name provided to FileError must not be empty.");
FileName = F.str();
Err = std::move(E);
Expand Down

0 comments on commit 6bcf635

Please sign in to comment.