commit | 674ef1d7d3960641b73aa23143426ffcc0416f20 | [log] [tgz] |
---|---|---|
author | Rafael Espindola <rafael.espindola@gmail.com> | Fri Aug 08 22:09:31 2014 +0000 |
committer | Rafael Espindola <rafael.espindola@gmail.com> | Fri Aug 08 22:09:31 2014 +0000 |
tree | 2315fc5430ba56c5b563bee60ea4daf22d7aba5a | |
parent | 9721bd029a09621d5b1c1a21ad019d8709699b36 [diff] [blame] |
Fix the windows build. Sorry for the noise. llvm-svn: 215249
diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp index bc6543a..4d17921 100644 --- a/llvm/lib/Support/Path.cpp +++ b/llvm/lib/Support/Path.cpp
@@ -542,7 +542,7 @@ void native(SmallVectorImpl<char> &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 == '\\') {