Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2261154
core: add Peekable::next_if_map
kennytm Jul 10, 2025
52063ae
stabilize path_add_extension
hanna-kruppe Aug 10, 2025
fc7de99
Ensure we emit an allocator shim when only some crate types need one
bjorn3 Aug 28, 2025
1d30900
Fix typo in comment
bjorn3 Aug 28, 2025
f4888c2
Correctly handle different crate types disagreeing if the allocator s…
bjorn3 Aug 28, 2025
a44b180
add `#[must_use]` to `array::repeat`
joboet Aug 31, 2025
0711bba
Ignore test when dylibs are not supported
bjorn3 Aug 31, 2025
5e9b655
Correct typo in `rustc_errors` comment
smoelius Sep 2, 2025
5b43244
Add LSX accelerated implementation for source file analysis
heiher Aug 28, 2025
a8537ab
Remove special implementation of `PartialEq` for `InvisibleOrigin` ou…
Kobzol Sep 1, 2025
54a5450
rustdoc-search: add test case for indexing every item type
notriddle Sep 2, 2025
dd8df3b
htmldocck: fix a bug in relative paths / globs
notriddle Sep 2, 2025
d9dc20c
raw_vec.rs: Remove superfluous fn alloc_guard
btj Aug 22, 2025
1bb9401
Rollup merge of #143725 - kennytm:peekable_next_if_map, r=jhpratt
tgross35 Sep 3, 2025
f75c3b5
Rollup merge of #145209 - hanna-kruppe:path_add_extension, r=tgross35
tgross35 Sep 3, 2025
4acffec
Rollup merge of #145750 - btj:drop-alloc-guard, r=tgross35
tgross35 Sep 3, 2025
a07e541
Rollup merge of #145962 - bjorn3:linkage_fixes, r=WaffleLapkin
tgross35 Sep 3, 2025
1d3bea4
Rollup merge of #145963 - heiher:src-analysis-lsx, r=lqd
tgross35 Sep 3, 2025
9cffc94
Rollup merge of #146054 - joboet:array-repeat-must_use, r=ibraheemdev
tgross35 Sep 3, 2025
351dc76
Rollup merge of #146090 - Kobzol:invisible-origin-eq, r=petrochenkov
tgross35 Sep 3, 2025
3eed9ef
Rollup merge of #146120 - smoelius:patch-3, r=lqd
tgross35 Sep 3, 2025
5a3b393
Rollup merge of #146131 - notriddle:rustdoc-search-load-itemtype-test…
tgross35 Sep 3, 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
Prev Previous commit
Next Next commit
Correct typo in rustc_errors comment
  • Loading branch information
smoelius authored Sep 2, 2025
commit 5e9b655e7094295ba4ce40568d8f182aef3704fc
2 changes: 1 addition & 1 deletion compiler/rustc_errors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1160,7 +1160,7 @@ impl<'a> DiagCtxtHandle<'a> {
// - It's only produce with JSON output.
// - It's not emitted the usual way, via `emit_diagnostic`.
// - The `$message_type` field is "unused_externs" rather than the usual
// "diagnosic".
// "diagnostic".
//
// We count it as a lint error because it has a lint level. The value
// of `loud` (which comes from "unused-externs" or
Expand Down
Loading