-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Rollup of 11 pull requests #51930
Rollup of 11 pull requests #51930
Commits on Jun 27, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 30d825c - Browse repository at this point
Copy the full SHA 30d825cView commit details
Commits on Jun 28, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 64f8e3b - Browse repository at this point
Copy the full SHA 64f8e3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for fb58db4 - Browse repository at this point
Copy the full SHA fb58db4View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd8ca26 - Browse repository at this point
Copy the full SHA cd8ca26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5436a5c - Browse repository at this point
Copy the full SHA 5436a5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3005162 - Browse repository at this point
Copy the full SHA 3005162View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03bcebb - Browse repository at this point
Copy the full SHA 03bcebbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a9b747 - Browse repository at this point
Copy the full SHA 9a9b747View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8449c5a - Browse repository at this point
Copy the full SHA 8449c5aView commit details -
Suggest correct comparison against negative literal
When parsing as emplacement syntax (`x<-1`), suggest the correct syntax for comparison against a negative value (`x< -1`).
Configuration menu - View commit details
-
Copy full SHA for 23d59d0 - Browse repository at this point
Copy the full SHA 23d59d0View commit details
Commits on Jun 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for d6cf182 - Browse repository at this point
Copy the full SHA d6cf182View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52b7eb9 - Browse repository at this point
Copy the full SHA 52b7eb9View commit details -
Implement PartialEq between &str and OsString
Allows for example `os_string == "something"`
Configuration menu - View commit details
-
Copy full SHA for 0250302 - Browse repository at this point
Copy the full SHA 0250302View commit details -
Configuration menu - View commit details
-
Copy full SHA for fdcee4d - Browse repository at this point
Copy the full SHA fdcee4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for fbd3c92 - Browse repository at this point
Copy the full SHA fbd3c92View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28c4813 - Browse repository at this point
Copy the full SHA 28c4813View commit details -
Configuration menu - View commit details
-
Copy full SHA for faaf250 - Browse repository at this point
Copy the full SHA faaf250View commit details -
Configuration menu - View commit details
-
Copy full SHA for ee52862 - Browse repository at this point
Copy the full SHA ee52862View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1328bde - Browse repository at this point
Copy the full SHA 1328bdeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 09856c8 - Browse repository at this point
Copy the full SHA 09856c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99ecdb3 - Browse repository at this point
Copy the full SHA 99ecdb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 297109e - Browse repository at this point
Copy the full SHA 297109eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f92fce - Browse repository at this point
Copy the full SHA 9f92fceView commit details -
Restore the old behavior of
$crate
in nestedmacro_rules
`$crate` is not resolved at def-site of a macro, but rather at "transitive def-site"
Configuration menu - View commit details
-
Copy full SHA for b69d511 - Browse repository at this point
Copy the full SHA b69d511View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84f1bc8 - Browse repository at this point
Copy the full SHA 84f1bc8View commit details
Commits on Jun 30, 2018
-
Rollup merge of rust-lang#51178 - GabrielMajeri:os-str-compare, r=Sim…
…onSapin Implement PartialEq between &str and OsString This fixes rust-lang#49854. It allows equality comparison between `OsString` values and `str` references, such as `os_string == "something"`.
Configuration menu - View commit details
-
Copy full SHA for 12247fd - Browse repository at this point
Copy the full SHA 12247fdView commit details -
Rollup merge of rust-lang#51762 - petrochenkov:oh-hi-mark, r=oli-obk
hygiene: Implement transparent marks and use them for call-site hygiene in proc-macros Fixes rust-lang#50050
Configuration menu - View commit details
-
Copy full SHA for d562bff - Browse repository at this point
Copy the full SHA d562bffView commit details -
Rollup merge of rust-lang#51828 - kennytm:no-simd-swap-for-mac, r=ale…
…xcrichton Do not allow LLVM to increase a TLS's alignment on macOS. This addresses the various TLS segfault on macOS 10.10. Fix rust-lang#51794. Fix rust-lang#51758. Fix rust-lang#50867. Fix rust-lang#48866. Fix rust-lang#46355. Fix rust-lang#44056.
Configuration menu - View commit details
-
Copy full SHA for 8c30769 - Browse repository at this point
Copy the full SHA 8c30769View commit details -
Rollup merge of rust-lang#51853 - MajorBreakfast:fix-doc-links, r=cra…
…mertj Fix some doc links The futures crate CI always fails because of these intra doc links. I hope that this will fix this issue. r? @steveklabnik @cramertj Edit: I added @steveklabnik as reviewer because this PR also adjusts a link in `src/libstd/error.rs`
Configuration menu - View commit details
-
Copy full SHA for 4b6d98d - Browse repository at this point
Copy the full SHA 4b6d98dView commit details -
Rollup merge of rust-lang#51862 - estebank:lifetime-spans, r=nikomats…
…akis Point to lifetime spans on lifetime errors
Configuration menu - View commit details
-
Copy full SHA for b3f8989 - Browse repository at this point
Copy the full SHA b3f8989View commit details -
Rollup merge of rust-lang#51864 - est31:libc_update, r=alexcrichton
Update liblibc This updates the libc submodule
Configuration menu - View commit details
-
Copy full SHA for bea664b - Browse repository at this point
Copy the full SHA bea664bView commit details -
Rollup merge of rust-lang#51867 - krk:issue-36122, r=petrochenkov
Require type is sized in wfcheck.check_item_type for externed DSTs, c… …loses rust-lang#36122 Continuing rust-lang#50126.
Configuration menu - View commit details
-
Copy full SHA for de85644 - Browse repository at this point
Copy the full SHA de85644View commit details -
Rollup merge of rust-lang#51883 - estebank:placement-suggestion, r=va…
…rkor Suggest correct comparison against negative literal When parsing as emplacement syntax (`x<-1`), suggest the correct syntax for comparison against a negative value (`x< -1`). Fix rust-lang#45651.
Configuration menu - View commit details
-
Copy full SHA for 2223cc8 - Browse repository at this point
Copy the full SHA 2223cc8View commit details -
Rollup merge of rust-lang#51890 - Ixrec:patch-3, r=alexcrichton
Fix inconsequential typo in GlobalAlloc doc example
Configuration menu - View commit details
-
Copy full SHA for cf957c8 - Browse repository at this point
Copy the full SHA cf957c8View commit details -
Rollup merge of rust-lang#51920 - euclio:concrete-type-suggestion, r=…
…estebank use literal span for concrete type suggestion Fixes rust-lang#51874. r? @estebank
Configuration menu - View commit details
-
Copy full SHA for b50a6ba - Browse repository at this point
Copy the full SHA b50a6baView commit details -
Rollup merge of rust-lang#51921 - japaric:panic-impl-error, r=nagisa
improve the error message when `#[panic_implementation]` is missing closes rust-lang#51341 r? @nagisa cc @phil-opp
Configuration menu - View commit details
-
Copy full SHA for b7bd4aa - Browse repository at this point
Copy the full SHA b7bd4aaView commit details