diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-02-29 00:46:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-02-29 00:46:46 +0000 |
commit | 95fe7b9b7251d33ad4128603087edac70cec7c72 (patch) | |
tree | a44bc43564ac63994d108b471bb6775408338da2 /lib/Support/PathV2.cpp | |
parent | 30e98a03a3c524026e2da2607e04bb655b0b6350 (diff) |
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
Diffstat (limited to 'lib/Support/PathV2.cpp')
-rw-r--r-- | lib/Support/PathV2.cpp | 2 |
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 |