Skip to content

Rollup of 8 pull requests #113429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
cdaef2c
Simplify duplicate checks for mir validator
WaffleLapkin May 24, 2023
5488a64
Fix incorrect documented default bufsize in bufreader/writer
shady-katy May 26, 2023
3c9a749
Add a test for `PartialEq` across `Allocator`s breaking inference (#1…
tgross35 Jul 4, 2023
a635bf7
Revert "alloc: Allow comparing `Box`s over different allocators"
tgross35 Jul 4, 2023
86728e7
Add a regression test for #109054
JohnTitor Jun 29, 2023
3acaa56
Prefer object candidates over impl candidates in new selection
compiler-errors Jul 6, 2023
c0c1551
Avoid calling item_name for RPITIT
spastorino Jul 6, 2023
07a230b
Do not assert >1 RPITITs on collect_return_position_impl_trait_in_tra…
spastorino Jul 6, 2023
388c230
Don't call type_of on TAIT in defining scope in new solver
compiler-errors Jun 28, 2023
3aa4561
Rollup merge of #111917 - WaffleLapkin:validate_unalloc, r=oli-obk
compiler-errors Jul 7, 2023
75febc6
Rollup merge of #112008 - intruder-kat:master, r=Nilstrieb
compiler-errors Jul 7, 2023
de49a9f
Rollup merge of #112825 - compiler-errors:tait-defining-cycle, r=lcnr
compiler-errors Jul 7, 2023
1cb31e7
Rollup merge of #113164 - JohnTitor:issue-109054, r=compiler-errors
compiler-errors Jul 7, 2023
7913d76
Rollup merge of #113318 - tgross35:113283-allocator-trait-eq, r=m-ou-se
compiler-errors Jul 7, 2023
f1c9098
Rollup merge of #113397 - compiler-errors:new-select-prefer-obj, r=lcnr
compiler-errors Jul 7, 2023
901c863
Rollup merge of #113419 - spastorino:new-rpitit-28, r=compiler-errors
compiler-errors Jul 7, 2023
45cb1ba
Rollup merge of #113421 - spastorino:new-rpitit-29, r=compiler-errors
compiler-errors Jul 7, 2023
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
2 changes: 1 addition & 1 deletion library/std/src/io/buffered/bufreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub struct BufReader<R: ?Sized> {
}

impl<R: Read> BufReader<R> {
/// Creates a new `BufReader<R>` with a default buffer capacity. The default is currently 8 KB,
/// Creates a new `BufReader<R>` with a default buffer capacity. The default is currently 8 KiB,
/// but may change in the future.
///
/// # Examples
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/io/buffered/bufwriter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub struct BufWriter<W: ?Sized + Write> {
}

impl<W: Write> BufWriter<W> {
/// Creates a new `BufWriter<W>` with a default buffer capacity. The default is currently 8 KB,
/// Creates a new `BufWriter<W>` with a default buffer capacity. The default is currently 8 KiB,
/// but may change in the future.
///
/// # Examples
Expand Down