diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 21:46:39 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 21:46:39 +0000 |
commit | 3acea39853d1a5ef2f3920c27f5748778fe53af9 (patch) | |
tree | f93b4e1c0fcdb02cf6c80b8e894f0f3b92f1bcac /llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | |
parent | b6e7d64f3070db641c332ca495215b8c3b887882 (diff) | |
download | bcm5719-llvm-3acea39853d1a5ef2f3920c27f5748778fe53af9.tar.gz bcm5719-llvm-3acea39853d1a5ef2f3920c27f5748778fe53af9.zip |
Don't use 'using std::error_code' in include/llvm.
This should make sure that most new uses use the std prefix.
llvm-svn: 210835
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index 5eb52c6f017..f3b2b21c091 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -31,6 +31,7 @@ #include <vector> using namespace llvm; +using std::error_code; // This variable is intentionally defined differently in the statically-compiled // program from the IR input to the JIT to assert that the JIT doesn't use its |