diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-18 19:59:48 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-18 19:59:48 +0000 |
commit | 1edcafe10f05ba17dd1fbf36713fb40f98eca03a (patch) | |
tree | 6ce976b39de5f42016cb318fb8ad0cfec0b3802c | |
parent | 59de33ef3934eb98f0c5dfbfb2c56fb4b80bda56 (diff) |
Fix Win32 Path.inc for API update.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91706 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/System/Win32/Path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 55b4376d73..b5f63743c9 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -47,7 +47,7 @@ namespace llvm { namespace sys { const char PathSeparator = ';'; -Path::Path(const std::string& p) +Path::Path(llvm::StringRef p) : path(p) { FlipBackSlashes(path); } |