[llvm-commits] CVS: llvm/lib/System/Cygwin/Path.cpp
Reid Spencer
reid at x10sys.com
Sat Dec 11 09:37:12 PST 2004
Changes in directory llvm/lib/System/Cygwin:
Path.cpp updated: 1.4 -> 1.5
---
Log message:
Rename Path::get -> Path::toString
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/System/Cygwin/Path.cpp
diff -u llvm/lib/System/Cygwin/Path.cpp:1.4 llvm/lib/System/Cygwin/Path.cpp:1.5
--- llvm/lib/System/Cygwin/Path.cpp:1.4 Fri Nov 5 16:15:35 2004
+++ llvm/lib/System/Cygwin/Path.cpp Sat Dec 11 11:37:01 2004
@@ -43,7 +43,7 @@
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;
}
More information about the llvm-commits
mailing list