Skip to content

Rollup of 10 pull requests #47962

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 20 commits into from
Feb 3, 2018
Merged
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
219ba51
Document the size of bool
SimonSapin Nov 21, 2017
b7437c5
Suggest removing value from `break` when invalid
estebank Jan 28, 2018
bc8e11b
Fix ICE when assigning references to a static mut with NLL
Aaron1011 Jan 31, 2018
b9441f2
Improve char escaping in lexer messages
etaoins Jan 31, 2018
cf78ff3
Fix lang items box example code
vmx Jan 31, 2018
e34c31b
Use constant for 180/π in to_degrees
varkor Feb 1, 2018
aaec608
Minimize weird spans involving macro context
estebank Feb 1, 2018
8b8d044
Fix ugly hover in sidebar
GuillaumeGomez Feb 1, 2018
c785013
Remove dead code
Manishearth Jan 29, 2018
3600bfb
Rollup merge of #46156 - SimonSapin:patch-14, r=withoutboats
kennytm Feb 2, 2018
0f36b2c
Rollup merge of #47829 - estebank:break-in-for, r=cramertj Suggest re…
kennytm Feb 2, 2018
a671944
Rollup merge of #47842 - Manishearth:dead-code, r=nagisa Remove dead …
kennytm Feb 2, 2018
2e3a8f5
Rollup merge of #47898 - Aaron1011:static-ref-nll, r=nikomatsakis Fix…
kennytm Feb 2, 2018
b4b73a1
Rollup merge of #47914 - etaoins:improve-char-escape-in-lexer-msg, r=…
kennytm Feb 2, 2018
5edeff3
Rollup merge of #47916 - vmx:patch-2, r=kennytm Fix lang items box ex…
kennytm Feb 2, 2018
7c6380c
Rollup merge of #47919 - varkor:to_degrees-precision, r=rkruppe Use c…
kennytm Feb 2, 2018
9d995d2
Rollup merge of #47942 - estebank:macro-spans, r=nikomatsakis Minimiz…
kennytm Feb 2, 2018
8d1586d
Rollup merge of #47951 - GuillaumeGomez:sidebar-hover, r=QuietMisdrea…
kennytm Feb 2, 2018
321e429
copy_nonoverlapping example: Fixed typo
perlun Feb 2, 2018
3a0a423
Rollup merge of #47973 - perlun:patch-1, r=dtolnay
kennytm Feb 3, 2018
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 src/libcore/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ extern "rust-intrinsic" {
/// ptr::copy_nonoverlapping(y, x, 1);
/// ptr::copy_nonoverlapping(&t, y, 1);
///
/// // y and t now point to the same thing, but we need to completely forget `tmp`
/// // y and t now point to the same thing, but we need to completely forget `t`
/// // because it's no longer relevant.
/// mem::forget(t);
/// }
Expand Down