about summary refs log tree commit diff
path: root/compiler/rustc_data_structures
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-10-16 14:40:08 +0000
committerbors <bors@rust-lang.org>2024-10-16 14:40:08 +0000
commitbed75e7c21e8d18bd536a0f7c9e479d2f6707db3 (patch)
tree4c7fc86850f97da7e70de6e039de76a0d78c8cc5 /compiler/rustc_data_structures
parent0037048da8ed19feef7ee1437f123a88a7342b33 (diff)
parentcd60224af72a380dad27f01afc08c7374105525b (diff)
downloadrust-bed75e7c21e8d18bd536a0f7c9e479d2f6707db3.tar.gz
rust-bed75e7c21e8d18bd536a0f7c9e479d2f6707db3.zip
Auto merge of #131767 - cuviper:bump-stage0, r=Mark-Simulacrum
Bump bootstrap compiler to 1.83.0-beta.1

https://forge.rust-lang.org/release/process.html#master-bootstrap-update-tuesday
Diffstat (limited to 'compiler/rustc_data_structures')
-rw-r--r--compiler/rustc_data_structures/src/steal.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/steal.rs b/compiler/rustc_data_structures/src/steal.rs
index aaa95f6b7f1..0d79d98b5d9 100644
--- a/compiler/rustc_data_structures/src/steal.rs
+++ b/compiler/rustc_data_structures/src/steal.rs
@@ -57,7 +57,7 @@ impl<T> Steal<T> {
     ///
     /// This should not be used within rustc as it leaks information not tracked
     /// by the query system, breaking incremental compilation.
-    #[cfg_attr(not(bootstrap), rustc_lint_untracked_query_information)]
+    #[rustc_lint_untracked_query_information]
     pub fn is_stolen(&self) -> bool {
         self.value.borrow().is_none()
     }