diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 17:19:42 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 17:19:42 +0000 |
commit | 8a8e554adc5f0f0ec74e0bae6fbef600b37a9a06 (patch) | |
tree | 1b84554f955818d1653a2a6fc59b2ba3345058ed /clang/lib/Frontend/CompilerInstance.cpp | |
parent | 54427ccef34c16d3b81ce2d5de4f72fc390371b9 (diff) | |
download | bcm5719-llvm-8a8e554adc5f0f0ec74e0bae6fbef600b37a9a06.tar.gz bcm5719-llvm-8a8e554adc5f0f0ec74e0bae6fbef600b37a9a06.zip |
Include system_error directly.
llvm-svn: 210802
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index 1605012e8c4..dfe5219ed6a 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -44,8 +44,8 @@ #include "llvm/Support/Signals.h" #include "llvm/Support/Timer.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Support/system_error.h" #include <sys/stat.h> +#include <system_error> #include <time.h> using namespace clang; |