From 39ea458b733e7919a7faec12b5b53888a0f5691a Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 29 Feb 2012 00:46:46 +0000 Subject: Support/PathV2: Fix namespace qualifier in make_absolute(), for Win32. llvm-svn: 151685 --- llvm/lib/Support/PathV2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support') diff --git a/llvm/lib/Support/PathV2.cpp b/llvm/lib/Support/PathV2.cpp index ce97b7f2ca2..786e1a12c30 100644 --- a/llvm/lib/Support/PathV2.cpp +++ b/llvm/lib/Support/PathV2.cpp @@ -602,7 +602,7 @@ error_code make_absolute(SmallVectorImpl &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 -- cgit v1.2.3