diff options
| author | Josh Stone <jistone@redhat.com> | 2024-10-14 14:46:44 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2024-10-15 20:30:23 -0700 |
| commit | acb09bf741ba439356e824dd10a07054c6656fb6 (patch) | |
| tree | 376a37a33d0c9d2e5817d6c4617e8f91cb320b39 /compiler/rustc_data_structures/src | |
| parent | 6134f9f636422abeda9fbc1563f6aa9a5b0b3fdf (diff) | |
| download | rust-acb09bf741ba439356e824dd10a07054c6656fb6.tar.gz rust-acb09bf741ba439356e824dd10a07054c6656fb6.zip | |
update bootstrap configs
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/steal.rs | 2 |
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() } |
