diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 13:32:11 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 13:32:11 +0000 |
commit | 15c5784d3ce42afcd5b641532912d3b05d97d36b (patch) | |
tree | cbf024d55db787349c2e3bce8637a14c71f3b16c /clang-tools-extra/module-map-checker/ModuleMapChecker.h | |
parent | 559dd851b627576d85525cd3ad42488b7df83f1b (diff) | |
download | bcm5719-llvm-15c5784d3ce42afcd5b641532912d3b05d97d36b.tar.gz bcm5719-llvm-15c5784d3ce42afcd5b641532912d3b05d97d36b.zip |
Replace llvm::error_code with std::error_code.
llvm-svn: 210776
Diffstat (limited to 'clang-tools-extra/module-map-checker/ModuleMapChecker.h')
-rw-r--r-- | clang-tools-extra/module-map-checker/ModuleMapChecker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/module-map-checker/ModuleMapChecker.h b/clang-tools-extra/module-map-checker/ModuleMapChecker.h index ee23c484eb0..2159aa47f37 100644 --- a/clang-tools-extra/module-map-checker/ModuleMapChecker.h +++ b/clang-tools-extra/module-map-checker/ModuleMapChecker.h @@ -137,7 +137,7 @@ public: /// \returns 0 if there were no errors or warnings, 1 if there /// were warnings, 2 if any other problem, such as a bad /// module map path argument was specified. - llvm::error_code doChecks(); + std::error_code doChecks(); // The following functions are called by doChecks. |