Support/PathV2: Fix namespace qualifier in make_absolute(), for Win32.

llvm-svn: 151685
This commit is contained in:
Daniel Dunbar 2012-02-29 00:46:46 +00:00
parent 8017d80505
commit 39ea458b73
1 changed files with 1 additions and 1 deletions

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