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

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5848c27
make raw_eq precondition more restrictive
RalfJung Jul 20, 2022
2d1c683
fix typo
RalfJung Jul 20, 2022
a61c841
actually call assert_send_and_sync
RalfJung Aug 3, 2022
725da87
provide correct size hint for unsupported platform CommandArgs
compiler-errors Jul 29, 2022
775c3c0
Add `x.sh` and `x.ps1` shell scripts
jyn514 Jul 31, 2022
c32969d
Move JSON tests into a directory.
nnethercote Aug 9, 2022
5938fd7
rustdoc: simplify highlight.rs
jsha Jul 16, 2022
be5672e
Stringify non-shorthand visibility correctly
jhpratt Aug 10, 2022
16bcc18
Improve crate selection on rustdoc search results page
steffahn Jul 3, 2022
e957480
Two small improvements:
steffahn Jul 11, 2022
107e039
Add missing ID into the ID map
GuillaumeGomez Aug 10, 2022
ea05be2
Update GUI test
GuillaumeGomez Aug 10, 2022
20cc5f9
rustdoc: make item-infos dimmer on dark theme #93896
jsha Jul 27, 2022
874ee5b
add crt-static for android
Bryanskiy Jul 16, 2022
d1cace5
grammar
RalfJung Aug 10, 2022
55d5dcb
Fix flags when using clang as linker for Fuchsia
tmandry Jul 20, 2022
8c53038
Simplify `rustc_hir::intravisit::Visitor::visit_variant_data`.
nnethercote Aug 10, 2022
421125f
Simplify `rustc_ast::visit::Visitor::visit_enum_def`.
nnethercote Aug 10, 2022
232bd80
Simplify `rustc_ast::visit::Visitor::visit_poly_trait_ref`.
nnethercote Aug 11, 2022
b8b851f
Simplify `rustc_hir::intravisit::Visitor::visit_enum_def`.
nnethercote Aug 11, 2022
ce78042
Avoid lowering a `MacArgs::Eq` twice.
nnethercote Aug 9, 2022
338d7c2
more typos
RalfJung Aug 11, 2022
121fab0
Add stability attributes to BacktraceStatus variants
tbodt Aug 11, 2022
8bbb54a
Rollup merge of #93896 - jsha:dark-colors, r=GuillaumeGomez
matthiaskrgr Aug 11, 2022
9606408
Rollup merge of #99337 - jsha:simplify-highlight, r=GuillaumeGomez
matthiaskrgr Aug 11, 2022
6737549
Rollup merge of #99421 - Bryanskiy:android-crt-static, r=petrochenkov
matthiaskrgr Aug 11, 2022
92b32e3
Rollup merge of #99500 - tmandry:fuchsia-flags, r=petrochenkov
matthiaskrgr Aug 11, 2022
37efd55
Rollup merge of #99511 - RalfJung:raw_eq, r=wesleywiser
matthiaskrgr Aug 11, 2022
20f124a
Rollup merge of #99992 - jyn514:shell-scripts, r=Mark-Simulacrum
matthiaskrgr Aug 11, 2022
275d4e7
Rollup merge of #100112 - RalfJung:assert_send_and_sync, r=m-ou-se
matthiaskrgr Aug 11, 2022
bd64d67
Rollup merge of #100203 - compiler-errors:command-args-size-hint, r=m…
matthiaskrgr Aug 11, 2022
e221aaf
Rollup merge of #100307 - nnethercote:fix-96847, r=cjgillot
matthiaskrgr Aug 11, 2022
6ae0414
Rollup merge of #100350 - jhpratt:stringify-vis, r=cjgillot
matthiaskrgr Aug 11, 2022
cefcfda
Rollup merge of #100374 - GuillaumeGomez:improve_rustdoc_search_resul…
matthiaskrgr Aug 11, 2022
8237efc
Rollup merge of #100392 - nnethercote:simplify-visitors, r=cjgillot
matthiaskrgr Aug 11, 2022
c7578b4
Rollup merge of #100418 - tbodt:stabilize-backtrace, r=dtolnay
matthiaskrgr Aug 11, 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
3 changes: 3 additions & 0 deletions library/std/src/sys/unsupported/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ impl<'a> Iterator for CommandArgs<'a> {
fn next(&mut self) -> Option<&'a OsStr> {
None
}
fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0))
}
}

impl<'a> ExactSizeIterator for CommandArgs<'a> {}
Expand Down