Support/Windows/FileSystem: Remove unneeded toNullTerminatedStringRef.

llvm-svn: 120777
This commit is contained in:
Michael J. Spencer 2010-12-03 01:21:38 +00:00
parent 4571040ea1
commit a41772aa0f
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ error_code copy_file(const Twine &from, const Twine &to, copy_option copt) {
// Get arguments.
SmallString<128> from_storage;
SmallString<128> to_storage;
StringRef f = from.toNullTerminatedStringRef(from_storage);
StringRef t = to.toNullTerminatedStringRef(to_storage);
StringRef f = from.toStringRef(from_storage);
StringRef t = to.toStringRef(to_storage);
// Convert to utf-16.
SmallVector<wchar_t, 128> wide_from;