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
This commit is contained in:
Daniel Dunbar 2012-02-29 00:46:46 +00:00
parent 30e98a03a3
commit 95fe7b9b72

View File

@ -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