summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2012-02-29 00:46:46 +0000
committerDaniel Dunbar <daniel@zuster.org>2012-02-29 00:46:46 +0000
commit95fe7b9b7251d33ad4128603087edac70cec7c72 (patch)
treea44bc43564ac63994d108b471bb6775408338da2
parent30e98a03a3c524026e2da2607e04bb655b0b6350 (diff)
downloadllvm-95fe7b9b7251d33ad4128603087edac70cec7c72.tar.gz
llvm-95fe7b9b7251d33ad4128603087edac70cec7c72.tar.bz2
llvm-95fe7b9b7251d33ad4128603087edac70cec7c72.tar.xz
Support/PathV2: Fix namespace qualifier in make_absolute(), for Win32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151685 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Support/PathV2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/PathV2.cpp b/lib/Support/PathV2.cpp
index ce97b7f2ca..786e1a12c3 100644
--- a/lib/Support/PathV2.cpp
+++ b/lib/Support/PathV2.cpp
@@ -602,7 +602,7 @@ error_code make_absolute(SmallVectorImpl<char> &path) {
bool rootDirectory = path::has_root_directory(p),
#ifdef LLVM_ON_WIN32
- rootName = has_root_name(p);
+ rootName = path::has_root_name(p);
#else
rootName = true;
#endif