8000 Rollup of 7 pull requests by Centril · Pull Request #63228 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 7 pull requests #63228

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 24 commits into from
Aug 3, 2019
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
159dcb2
On `format!()` arg count mismatch provide extra info
estebank Jul 30, 2019
86f4f68
Improve handling of invalid references in `format!()`
estebank Jul 30, 2019
762f645
review comments
estebank Jul 30, 2019
9e59d74
fix tests
estebank Jul 30, 2019
22ea38d
fix dedup
estebank Jul 31, 2019
79a1e7a
build_helper: rename run -> run_verbose (seems unused)
RalfJung Aug 1, 2019
0d8c97b
build_helper: rename (try_)run_silent -> (try_)run
RalfJung Aug 1, 2019
30f61de
replace what I think is an erroneous try_run_quiet by try_run
RalfJung Aug 1, 2019
14be088
Round generator sizes to multiple of their alignment
tmandry Aug 2, 2019
875cef0
Cleanup 'print_generic_params'.
Centril Aug 2, 2019
dd98727
Print outer attributes on formal params.
Centril Aug 2, 2019
d1c89d6
Test for printing attrs on formal params.
Centril Aug 2, 2019
57f9423
Clarify semantics of mem::zeroed
gnzlbg Aug 2, 2019
13b4afe
Remove trailing whitespace
gnzlbg Aug 2, 2019
3725e35
Consistency.
gnzlbg Aug 2, 2019
208672f
remove unsupported test case
bpangWR Aug 1, 2019
2b0f448
Added support for armv7-unknown-linux-gnueabi and armv7-unknown-linux…
adrian-budau Jul 29, 2019
a2735a3
Rollup merge of #63107 - adrian-budau:master, r=alexcrichton
Centril Aug 2, 2019
edc846f
Rollup merge of #63121 - estebank:formatting-pos, r=alexcrichton
Centril Aug 2, 2019
726f39a
Rollup merge of #63196 - RalfJung:build_helper, r=alexcrichton
Centril Aug 2, 2019
ed7b044
Rollup merge of #63206 - BaoshanPang:master, r=alexcrichton
Centril Aug 2, 2019
109b21f
Rollup merge of #63208 - tmandry:issue-62658, r=cramertj
Centril Aug 2, 2019
f6d8977
Rollup merge of #63212 - Centril:param-attrs-pretty, r=davidtwco
Centril Aug 2, 2019
4520a39
Rollup merge of #63215 - gnzlbg:patch-6, r=Centril
Centril Aug 2, 2019
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
Remove trailing whitespace
I had one job...
  • Loading branch information
gnzlbg authored Aug 2, 2019
commit 13b4afe4baf0080cb1392d8e4009fee31c4b95ea
2 changes: 1 addition & 1 deletion src/libcore/mem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ pub const fn needs_drop<T>() -> bool {
/// Returns the value of type `T` represented by the all-zeros bit-pattern.
///
/// This means that, for example, the padding byte in `(u8, u16)` is not
/// necessarily zeroed.
/// necessarily zeroed.
///
/// There is no guarantee that an all-zero byte-pattern represents a valid value of
/// some type `T`. For example, the all-zero byte-pattern is not a valid value
Expand Down
0