diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 17:38:55 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 17:38:55 +0000 |
commit | a6e9c3e43ae125530b7d9f158f5486ac48ca5a29 (patch) | |
tree | 767534680e11e07890b647f1943819d0dd75e47c /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h | |
parent | 8a8e554adc5f0f0ec74e0bae6fbef600b37a9a06 (diff) | |
download | bcm5719-llvm-a6e9c3e43ae125530b7d9f158f5486ac48ca5a29.tar.gz bcm5719-llvm-a6e9c3e43ae125530b7d9f158f5486ac48ca5a29.zip |
Remove system_error.h.
This is a minimal change to remove the header. I will remove the occurrences
of "using std::error_code" in a followup patch.
llvm-svn: 210803
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h index 412cf20a5c7..4c7f0b52c72 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h @@ -28,8 +28,8 @@ #include "llvm/Support/Mutex.h" #include "llvm/Support/SwapByteOrder.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Support/system_error.h" #include <map> +#include <system_error> using namespace llvm; using namespace llvm::object; |