diff options
| author | Ralf Jung <post@ralfj.de> | 2025-05-17 09:53:02 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2025-05-17 09:53:02 +0200 |
| commit | 8f2da9b487f47827d565c52e019db5a464f31808 (patch) | |
| tree | 301e9048498969ddd68998a0b787e50108b9f881 /compiler/rustc_data_structures/src | |
| parent | 3a9ee90deda02db57e34c1434960008678d9923d (diff) | |
| parent | a69bc17fb8026bdc0d24bb1896ff95f0eba1da4e (diff) | |
| download | rust-8f2da9b487f47827d565c52e019db5a464f31808.tar.gz rust-8f2da9b487f47827d565c52e019db5a464f31808.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(); } } } |
