Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
e477732
Don't strip shebang in expr-ctxt `include!(…)`
fmease Sep 9, 2025
7d0300b
Fix +vfp3,-d32 target configuration
adamgemmell Dec 3, 2025
4ed68f0
Remove redundant -d32 in target specs
adamgemmell Dec 3, 2025
df38e15
Add const default for OnceCell and OnceLock
tisonkun Dec 9, 2025
0428dd5
miri: add -Zbinary-dep-depinfo to dependency builds
RalfJung Dec 11, 2025
cc68f22
Enable llvm-libunwind by default for Hexagon targets
androm3da Dec 14, 2025
3493f8c
fix docustring on fetch_or
agavra Dec 15, 2025
897e88c
add test for 149980
jdonszelmann Dec 19, 2025
c316c05
refactor how eii expansion is wrapped fixing 149980
jdonszelmann Dec 19, 2025
19f74f4
Use the same length type for `TestableCase::Slice` and `TestKind::Len`
Zalathar Dec 20, 2025
5d8a096
change non-canonical clone impl to {*self}, fix some doc comments
hkBst Dec 19, 2025
c556e9c
[rustdoc] Add missing close tags in extern crate reexports
Dec 20, 2025
93fbf3b
Drop the From derive macro from the v1 prelude
jtgeibel Dec 20, 2025
b7a0f84
tests/debuginfo/function-arg-initialization.rs: Stop disabling Single…
Enselic Dec 20, 2025
8825e1f
library/coretests/tests/fmt/mod.rs: Add HRTB fn pointer case
Enselic Dec 17, 2025
685e4b6
Add comment with link to issue and open tags
Dec 21, 2025
37af3f6
GVN: Adds the `insert_unique` method
dianqk Dec 21, 2025
74af408
rustdoc: handle macro expansions in types
el-ev Dec 21, 2025
e5b8188
Rollup merge of #146377 - fmease:no-incl-shebang-expr, r=Urgau
JonathanBrouwer Dec 21, 2025
ba0ec17
Rollup merge of #149512 - adamgemmell:dev/adagem01/armv7-d32-fix, r=A…
JonathanBrouwer Dec 21, 2025
1fc60c2
Rollup merge of #149812 - tisonkun:oncelock-const-default, r=Mark-Sim…
JonathanBrouwer Dec 21, 2025
e10321a
Rollup merge of #149882 - RalfJung:miri-dep-build, r=Mark-Simulacrum
JonathanBrouwer Dec 21, 2025
952fb18
Rollup merge of #150009 - androm3da:bcain/hex_unwind, r=Mark-Simulacrum
JonathanBrouwer Dec 21, 2025
33dc9fc
Rollup merge of #150035 - agavra:patch-1, r=Mark-Simulacrum
JonathanBrouwer Dec 21, 2025
93bc64f
Rollup merge of #150082 - Enselic:hrtb-fn-pointer, r=fee1-dead
JonathanBrouwer Dec 21, 2025
db2e6b6
Rollup merge of #150160 - jdonszelmann:fix-149980, r=Kivooeo
JonathanBrouwer Dec 21, 2025
94771c3
Rollup merge of #150184 - Zalathar:slice-len, r=saethlin
JonathanBrouwer Dec 21, 2025
9cac665
Rollup merge of #150185 - lambda:rustdoc-missing-close-tags-reexport,…
JonathanBrouwer Dec 21, 2025
db16dda
Rollup merge of #150191 - hkBst:clippy-fix-15, r=Kivooeo
JonathanBrouwer Dec 21, 2025
f20e888
Rollup merge of #150203 - jtgeibel:drop-From-derive-macro-from-prelud…
JonathanBrouwer Dec 21, 2025
1b8efdb
Rollup merge of #150210 - Enselic:run-mir-pass, r=saethlin
JonathanBrouwer Dec 21, 2025
365a9da
Rollup merge of #150221 - el-ev:missing-par-ice-150154, r=fmease
JonathanBrouwer Dec 21, 2025
036831e
Rollup merge of #150223 - dianqk:gvn-insert_unique, r=cjgillot
JonathanBrouwer Dec 21, 2025
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
4 changes: 2 additions & 2 deletions library/core/src/sync/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1151,8 +1151,8 @@ impl AtomicBool {
/// assert_eq!(foo.fetch_or(false, Ordering::SeqCst), true);
/// assert_eq!(foo.load(Ordering::SeqCst), true);
///
/// let foo = AtomicBool::new(true);
/// assert_eq!(foo.fetch_or(true, Ordering::SeqCst), true);
/// let foo = AtomicBool::new(false);
/// assert_eq!(foo.fetch_or(true, Ordering::SeqCst), false);
/// assert_eq!(foo.load(Ordering::SeqCst), true);
///
/// let foo = AtomicBool::new(false);
Expand Down