diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-11 17:37:01 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-11 17:37:01 +0000 |
commit | 707a27cfa82292f14845ce9aa54b9f95cb23fcee (patch) | |
tree | 02ca43202cf6dc5d0db7f7eccac04d3840047fc0 /lib/System/Cygwin/Path.cpp | |
parent | 5df6895f75cc0ae8aa42b4872da1af6ef29f17f4 (diff) |
Rename Path::get -> Path::toString
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Cygwin/Path.cpp')
-rw-r--r-- | lib/System/Cygwin/Path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Cygwin/Path.cpp b/lib/System/Cygwin/Path.cpp index 3b95665f16..01a40da4e7 100644 --- a/lib/System/Cygwin/Path.cpp +++ b/lib/System/Cygwin/Path.cpp @@ -43,7 +43,7 @@ Path::GetTemporaryDirectory() { free(pathname); assert(result.isValid() && "tempnam didn't create a valid pathname!"); if (0 != mkdir(result.c_str(), S_IRWXU)) - ThrowErrno(result.get() + ": Can't create temporary directory"); + ThrowErrno(result.toString() + ": Can't create temporary directory"); return result; } |