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 | e616fa6104088b53052b25f371bd05700a865cf9 (patch) | |
tree | 29c127e1d45245c49d4e0e153fdfcdda332ba1bf /lib/Frontend/CompilerInvocation.cpp | |
parent | b116a7f12d88255c7cb7cd06a7ac339da1773091 (diff) | |
download | clang-e616fa6104088b53052b25f371bd05700a865cf9.tar.gz |
Include system_error directly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index d8abd5307e..68c7176a5f 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -33,10 +33,10 @@ #include "llvm/Support/Host.h" #include "llvm/Support/Path.h" #include "llvm/Support/Process.h" -#include "llvm/Support/system_error.h" #include <atomic> #include <memory> #include <sys/stat.h> +#include <system_error> using namespace clang; //===----------------------------------------------------------------------===// |