aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/Support/LockFileManagerTest.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-06-13 03:20:08 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-06-13 03:20:08 +0000
commitc049c6574b93d774e572f13db1e8cea7bdb2d982 (patch)
tree3d400b852ce1e644e4d1164484f8c69a23f6a1f8 /llvm/unittests/Support/LockFileManagerTest.cpp
parent4453e4294515bfc0cff16fdd7278f217d9efba4f (diff)
downloadllvm-c049c6574b93d774e572f13db1e8cea7bdb2d982.zip
llvm-c049c6574b93d774e572f13db1e8cea7bdb2d982.tar.gz
llvm-c049c6574b93d774e572f13db1e8cea7bdb2d982.tar.bz2
Remove the last uses of 'using std::error_code'
This finishes the transition to std::error_code. llvm-svn: 210877
Diffstat (limited to 'llvm/unittests/Support/LockFileManagerTest.cpp')
-rw-r--r--llvm/unittests/Support/LockFileManagerTest.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/unittests/Support/LockFileManagerTest.cpp b/llvm/unittests/Support/LockFileManagerTest.cpp
index 3d6357c..885b7d6 100644
--- a/llvm/unittests/Support/LockFileManagerTest.cpp
+++ b/llvm/unittests/Support/LockFileManagerTest.cpp
@@ -14,13 +14,12 @@
#include <memory>
using namespace llvm;
-using std::error_code;
namespace {
TEST(LockFileManagerTest, Basic) {
SmallString<64> TmpDir;
- error_code EC;
+ std::error_code EC;
EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
ASSERT_FALSE(EC);
@@ -47,7 +46,7 @@ TEST(LockFileManagerTest, Basic) {
TEST(LockFileManagerTest, LinkLockExists) {
SmallString<64> TmpDir;
- error_code EC;
+ std::error_code EC;
EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
ASSERT_FALSE(EC);
@@ -90,7 +89,7 @@ TEST(LockFileManagerTest, LinkLockExists) {
TEST(LockFileManagerTest, RelativePath) {
SmallString<64> TmpDir;
- error_code EC;
+ std::error_code EC;
EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
ASSERT_FALSE(EC);