Rename Path::get -> Path::toString

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18802 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2004-12-11 17:37:01 +00:00
parent 5df6895f75
commit 707a27cfa8
6 changed files with 26 additions and 22 deletions

View File

@ -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;
}