diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2016-11-11 04:28:40 +0000 |
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-11-11 04:28:40 +0000 |
| commit | 41af43092ccc8030bb49cea324d85eecd5ae68a8 (patch) | |
| tree | f30038673dd27f2d4785068fffd510abe4fb23d7 /lld | |
| parent | e8e98dcb74cd6d297c31c023bfacdf7f28cdaabc (diff) | |
| download | bcm5719-llvm-41af43092ccc8030bb49cea324d85eecd5ae68a8.tar.gz bcm5719-llvm-41af43092ccc8030bb49cea324d85eecd5ae68a8.zip | |
Make the Error class constructor protected
This is forcing to use Error::success(), which is in a wide majority
of cases a lot more readable.
Differential Revision: https://reviews.llvm.org/D26481
llvm-svn: 286561
Diffstat (limited to 'lld')
| -rw-r--r-- | lld/ELF/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp index 3c893cbfdbb..8fd613790cb 100644 --- a/lld/ELF/Driver.cpp +++ b/lld/ELF/Driver.cpp @@ -102,7 +102,7 @@ LinkerDriver::getArchiveMembers(MemoryBufferRef MB) { check(Archive::create(MB), "failed to parse archive"); std::vector<MemoryBufferRef> V; - Error Err; + Error Err = Error::success(); for (const ErrorOr<Archive::Child> &COrErr : File->children(Err)) { Archive::Child C = check(COrErr, "could not get the child of the archive " + File->getFileName()); |

