diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-07 01:23:19 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-07 01:23:19 +0000 |
commit | 98c7a114de14b80bfc1741a11e87394e79b70c48 (patch) | |
tree | 96bf2d8f80fd60ecab4530828d55062fe79c0874 /llvm/lib/Support | |
parent | 5529c57cfe39cbbd8c81dc0d8da9d61196ca71cd (diff) | |
download | bcm5719-llvm-98c7a114de14b80bfc1741a11e87394e79b70c48.tar.gz bcm5719-llvm-98c7a114de14b80bfc1741a11e87394e79b70c48.zip |
Support/PathV2: Use SmallVector::clear instead of set_size.
llvm-svn: 121092
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/PathV2.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/Unix/PathV2.inc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/PathV2.cpp b/llvm/lib/Support/PathV2.cpp index 492903e4b53..7b99287e1e3 100644 --- a/llvm/lib/Support/PathV2.cpp +++ b/llvm/lib/Support/PathV2.cpp @@ -518,7 +518,7 @@ error_code replace_extension(SmallVectorImpl<char> &path, error_code native(const Twine &path, SmallVectorImpl<char> &result) { // Clear result. - result.set_size(0); + result.clear(); #ifdef LLVM_ON_WIN32 SmallString<128> path_storage; StringRef p = path.toStringRef(path_storage); diff --git a/llvm/lib/Support/Unix/PathV2.inc b/llvm/lib/Support/Unix/PathV2.inc index 4ca482dfce1..1362237199b 100644 --- a/llvm/lib/Support/Unix/PathV2.inc +++ b/llvm/lib/Support/Unix/PathV2.inc @@ -65,7 +65,7 @@ namespace { #endif (dir = "/tmp"); - result.set_size(0); + result.clear(); StringRef d(dir); result.append(d.begin(), d.end()); return success; @@ -400,7 +400,7 @@ rety_open_create: return error_code(errno, system_category()); } - result_path.set_size(0); + result_path.clear(); StringRef d(real_path_buff); result_path.append(d.begin(), d.end()); |