diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 16:53:02 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 16:53:02 +0000 |
commit | fd85bb3424d395a0cacbf25443b1d37e97806d2c (patch) | |
tree | 1b465ed0ca2db6f9cfe340c0188aec0a111aa4c8 | |
parent | 033ecd1cc8a76b58b24d5a90075dc0e0fb72d98a (diff) | |
download | bcm5719-llvm-fd85bb3424d395a0cacbf25443b1d37e97806d2c.tar.gz bcm5719-llvm-fd85bb3424d395a0cacbf25443b1d37e97806d2c.zip |
include system_error directly.
llvm-svn: 210797
6 files changed, 6 insertions, 6 deletions
diff --git a/clang-tools-extra/clang-apply-replacements/include/clang-apply-replacements/Tooling/ApplyReplacements.h b/clang-tools-extra/clang-apply-replacements/include/clang-apply-replacements/Tooling/ApplyReplacements.h index 2b77e9e4547..af8c5258230 100644 --- a/clang-tools-extra/clang-apply-replacements/include/clang-apply-replacements/Tooling/ApplyReplacements.h +++ b/clang-tools-extra/clang-apply-replacements/include/clang-apply-replacements/Tooling/ApplyReplacements.h @@ -19,8 +19,8 @@ #include "clang/Tooling/Refactoring.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringRef.h" -#include "llvm/Support/system_error.h" #include <string> +#include <system_error> #include <vector> namespace clang { diff --git a/clang-tools-extra/clang-modernize/Core/IncludeExcludeInfo.h b/clang-tools-extra/clang-modernize/Core/IncludeExcludeInfo.h index aa42c658708..5811d2c352d 100644 --- a/clang-tools-extra/clang-modernize/Core/IncludeExcludeInfo.h +++ b/clang-tools-extra/clang-modernize/Core/IncludeExcludeInfo.h @@ -17,7 +17,7 @@ #define CLANG_MODERNIZE_INCLUDEEXCLUDEINFO_H #include "llvm/ADT/StringRef.h" -#include "llvm/Support/system_error.h" +#include <system_error> #include <vector> /// \brief Class encapsulating the handling of include and exclude paths diff --git a/clang-tools-extra/clang-modernize/Core/ReplacementHandling.cpp b/clang-tools-extra/clang-modernize/Core/ReplacementHandling.cpp index 5add9803351..19e2ddf748f 100644 --- a/clang-tools-extra/clang-modernize/Core/ReplacementHandling.cpp +++ b/clang-tools-extra/clang-modernize/Core/ReplacementHandling.cpp @@ -18,7 +18,7 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/Path.h" #include "llvm/Support/Program.h" -#include "llvm/Support/system_error.h" +#include <system_error> using namespace llvm; using namespace llvm::sys; diff --git a/clang-tools-extra/clang-tidy/ClangTidyOptions.h b/clang-tools-extra/clang-tidy/ClangTidyOptions.h index 62346420ee8..2354c93c621 100644 --- a/clang-tools-extra/clang-tidy/ClangTidyOptions.h +++ b/clang-tools-extra/clang-tidy/ClangTidyOptions.h @@ -11,8 +11,8 @@ #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANG_TIDY_OPTIONS_H #include "llvm/ADT/StringRef.h" -#include "llvm/Support/system_error.h" #include <string> +#include <system_error> #include <utility> #include <vector> diff --git a/clang-tools-extra/remove-cstr-calls/RemoveCStrCalls.cpp b/clang-tools-extra/remove-cstr-calls/RemoveCStrCalls.cpp index 768e4fa7c1f..3c95ad0dcb0 100644 --- a/clang-tools-extra/remove-cstr-calls/RemoveCStrCalls.cpp +++ b/clang-tools-extra/remove-cstr-calls/RemoveCStrCalls.cpp @@ -48,7 +48,7 @@ #include "llvm/Support/Path.h" #include "llvm/Support/Signals.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Support/system_error.h" +#include <system_error> using namespace clang; using namespace clang::ast_matchers; diff --git a/clang-tools-extra/unittests/clang-modernize/UniqueHeaderNameTest.cpp b/clang-tools-extra/unittests/clang-modernize/UniqueHeaderNameTest.cpp index 45e8cce6e4e..2d205745caa 100644 --- a/clang-tools-extra/unittests/clang-modernize/UniqueHeaderNameTest.cpp +++ b/clang-tools-extra/unittests/clang-modernize/UniqueHeaderNameTest.cpp @@ -16,7 +16,7 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/Path.h" #include "llvm/Support/Regex.h" -#include "llvm/Support/system_error.h" +#include <system_error> TEST(UniqueHeaderName, testUniqueHeaderName) { using namespace llvm::sys::path; |