diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 14:11:22 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 14:11:22 +0000 |
commit | 15aa07b2e8e1c5f2a3fc0a8f5f738b4e80b8df35 (patch) | |
tree | 98476cf9df55d8e6f36e57ecc2d7f0a39c09f44a /tools/obj2yaml | |
parent | 7edfaf71485862ee52fb4977fa587e73aab6fa33 (diff) |
Replace llvm::error_code with std::error_code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210783 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/obj2yaml')
-rw-r--r-- | tools/obj2yaml/obj2yaml.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/obj2yaml/obj2yaml.h b/tools/obj2yaml/obj2yaml.h index 73c58fa958e..19476f78f42 100644 --- a/tools/obj2yaml/obj2yaml.h +++ b/tools/obj2yaml/obj2yaml.h @@ -17,9 +17,9 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/Support/system_error.h" -llvm::error_code coff2yaml(llvm::raw_ostream &Out, - const llvm::object::COFFObjectFile &Obj); -llvm::error_code elf2yaml(llvm::raw_ostream &Out, - const llvm::object::ObjectFile &Obj); +std::error_code coff2yaml(llvm::raw_ostream &Out, + const llvm::object::COFFObjectFile &Obj); +std::error_code elf2yaml(llvm::raw_ostream &Out, + const llvm::object::ObjectFile &Obj); #endif |