diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-07 03:57:17 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-07 03:57:17 +0000 |
commit | ee271d8758c8493f2cadf5b9c0ec57431565891b (patch) | |
tree | 2075d5abc1a317ff6d0160c9b74f7bc7bbae7159 /unittests/Support/Path.cpp | |
parent | bf60dad984e296d43a8a6b33e8c528e8c8a24394 (diff) | |
download | external_llvm-ee271d8758c8493f2cadf5b9c0ec57431565891b.zip external_llvm-ee271d8758c8493f2cadf5b9c0ec57431565891b.tar.gz external_llvm-ee271d8758c8493f2cadf5b9c0ec57431565891b.tar.bz2 |
Support/PathV2: Move make_absolute from path to fs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Support/Path.cpp')
-rw-r--r-- | unittests/Support/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index 76a16a3..cd44bbe 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -104,7 +104,7 @@ TEST(Support, Path) { SmallString<16> temp_store; temp_store = *i; - ASSERT_FALSE(path::make_absolute(temp_store)); + ASSERT_FALSE(fs::make_absolute(temp_store)); temp_store = *i; ASSERT_FALSE(path::remove_filename(temp_store)); |