Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
f53e489
Show the unused type for `unused_results` lint
camelid Dec 12, 2021
fd47d24
miri: lift restriction on extern types being the only field in a struct
tmiasko Dec 14, 2021
e1458ee
When encountering a match expr with no arms, suggest it
estebank Dec 16, 2021
9035708
When finding a match expr with a single arm that requires more, sugge…
estebank Dec 16, 2021
37cd037
When finding a match expr with multiple arms that requires more, sugg…
estebank Dec 16, 2021
9dd390f
Point at uncovered variants in enum definition in `note` instead of a…
estebank Dec 16, 2021
78a3078
Revert "socket ancillary data implementation for dragonflybsd."
devnexen Dec 16, 2021
78a8e00
builtin_macros: allow external consumers for AsmArgs parsing
calebcartwright Dec 17, 2021
c41fd76
rustc_codegen_llvm: Give each codegen unit a unique DWARF name on all
pcwalton Dec 17, 2021
6b5f63c
Constify (most) `Option` methods
fee1-dead Dec 14, 2021
2f555de
Add a temporary hack before env fix lands in bootstrap
fee1-dead Dec 17, 2021
493cf0c
Bless ui tests
fee1-dead Dec 17, 2021
f141bed
Point to the tracking issue
fee1-dead Dec 17, 2021
aeca000
Rollup merge of #91818 - camelid:unused-result-type, r=jackh726
matthiaskrgr Dec 17, 2021
cd8da43
Rollup merge of #91910 - tmiasko:miri-extern-type, r=RalfJung
matthiaskrgr Dec 17, 2021
7e0e540
Rollup merge of #91928 - fee1-dead:constification1, r=oli-obk
matthiaskrgr Dec 17, 2021
0ac26be
Rollup merge of #91993 - estebank:match-span-suggestion, r=oli-obk
matthiaskrgr Dec 17, 2021
c58f1a1
Rollup merge of #92016 - calebcartwright:expose-asm-args-parsing, r=A…
matthiaskrgr Dec 17, 2021
62b91c3
Rollup merge of #92024 - pcwalton:per-codegen-unit-names, r=davidtwco
matthiaskrgr Dec 17, 2021
51df63f
Rollup merge of #92025 - devnexen:revert-91553-anc_data_dfbsd, r=kennytm
matthiaskrgr Dec 17, 2021
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
Constify (most) Option methods
  • Loading branch information
fee1-dead committed Dec 17, 2021
commit 6b5f63c3fc4cc5bcaaf5cad60e2cc7e56df3487f
1 change: 1 addition & 0 deletions library/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
#![feature(const_num_from_num)]
#![feature(const_ops)]
#![feature(const_option)]
#![feature(const_option_ext)]
#![feature(const_pin)]
#![feature(const_replace)]
#![feature(const_ptr_is_null)]
Expand Down
Loading