diff options
| author | The rustc-dev-guide Cronjob Bot <github-actions@github.com> | 2025-05-19 04:16:41 +0000 |
|---|---|---|
| committer | The rustc-dev-guide Cronjob Bot <github-actions@github.com> | 2025-05-19 04:16:41 +0000 |
| commit | 288ca059765372d2f009c840fae7c1e06a9071d8 (patch) | |
| tree | a8c9f8be48d2ffa7889b02caa18a9d367876d008 /compiler/rustc_data_structures/src | |
| parent | 70ead0af5be34bf03a9313be20fa610668b41340 (diff) | |
| parent | e42bbfe1f7c26f8760a99c4b1f27d33aba1040bb (diff) | |
| download | rust-288ca059765372d2f009c840fae7c1e06a9071d8.tar.gz rust-288ca059765372d2f009c840fae7c1e06a9071d8.zip | |
Merge from rustc
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/temp_dir.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/temp_dir.rs b/compiler/rustc_data_structures/src/temp_dir.rs index 4dbe11d707d..9adae049261 100644 --- a/compiler/rustc_data_structures/src/temp_dir.rs +++ b/compiler/rustc_data_structures/src/temp_dir.rs @@ -17,7 +17,7 @@ impl Drop for MaybeTempDir { // occur. let dir = unsafe { ManuallyDrop::take(&mut self.dir) }; if self.keep { - let _ = dir.into_path(); + let _ = dir.keep(); } } } |
