diff options
Diffstat (limited to 'llvm/lib/Support/Unix')
-rw-r--r-- | llvm/lib/Support/Unix/PathV2.inc | 4 |
1 files changed, 2 insertions, 2 deletions
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()); |