From cea304321683771a95cff31dd0c4e03f364b495a Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 8 Aug 2014 22:09:31 +0000 Subject: [PATCH] Fix the windows build. Sorry for the noise. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215249 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/Path.cpp b/lib/Support/Path.cpp index bc6543a5722..4d179218f78 100644 --- a/lib/Support/Path.cpp +++ b/lib/Support/Path.cpp @@ -542,7 +542,7 @@ void native(const Twine &path, SmallVectorImpl &result) { void native(SmallVectorImpl &Path) { #ifdef LLVM_ON_WIN32 - std::replace(path.begin(), path.end(), '/', '\\'); + std::replace(Path.begin(), Path.end(), '/', '\\'); #else for (auto PI = Path.begin(), PE = Path.end(); PI < PE; ++PI) { if (*PI == '\\') { -- 2.11.0