Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
dcfe92e
add `fetch_not` method on `AtomicBool`
Jun 25, 2022
7d5f236
Add feature gate `#![atomic_bool_fetch_not]`
Jun 25, 2022
0df7364
temporarily remove tests because I'm not sure if we need them
Jun 25, 2022
3b117c4
library: fix uefi va_list type definition
dlrobertson Jun 26, 2022
9c5ae20
forgot about the feature flag in the doctest
Jun 26, 2022
6e32a16
fix box with custom allocator in miri
beepster4096 Jun 26, 2022
d317988
validate box's allocator
beepster4096 Jun 27, 2022
7533777
Remove `final_arg_types`, improve tuple wrapping suggestion
compiler-errors Jun 28, 2022
9f9c311
Validate all fields of box instead of validating allocator specifically
beepster4096 Jun 28, 2022
5fc1dd1
emit Retag for compound types with reference fields
RalfJung Jun 28, 2022
9039265
fix silly mistake
beepster4096 Jun 28, 2022
98af1bf
Migrate some rustc_borrowck diagnostics to SessionDiagnostic
compiler-errors Jun 23, 2022
23f3b0d
Don't point at another arg if we're already pointing at one
compiler-errors Jun 29, 2022
1e40200
Erase regions in new abstract consts
JulianKnodt Jun 25, 2022
d10497b
Rollup merge of #98415 - compiler-errors:rustc-borrowck-session-diagn…
Dylan-DPC Jun 29, 2022
3f2ba25
Rollup merge of #98479 - leocth:atomic-bool-fetch-not, r=joshtriplett
Dylan-DPC Jun 29, 2022
7b9a7ef
Rollup merge of #98499 - JulianKnodt:erase_lifetime, r=lcnr
Dylan-DPC Jun 29, 2022
375ab3e
Rollup merge of #98516 - dlrobertson:uefi_va_list, r=joshtriplett
Dylan-DPC Jun 29, 2022
b2836bd
Rollup merge of #98554 - DrMeepster:box_unsizing_is_not_special, r=Ra…
Dylan-DPC Jun 29, 2022
fcbb2e8
Rollup merge of #98607 - compiler-errors:tuple-wrap-suggestion, r=oli…
Dylan-DPC Jun 29, 2022
68228be
Rollup merge of #98625 - RalfJung:retag, r=oli-obk
Dylan-DPC Jun 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
forgot about the feature flag in the doctest
  • Loading branch information
leocth committed Jun 26, 2022
commit 9c5ae20c5952824614a3d2c67a467f2c0d0d9d86
1 change: 1 addition & 0 deletions library/core/src/sync/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ impl AtomicBool {
/// # Examples
///
/// ```
/// #![feature(atomic_bool_fetch_not)]
/// use std::sync::atomic::{AtomicBool, Ordering};
///
/// let foo = AtomicBool::new(true);
Expand Down