-
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 #62840
Rollup of 11 pull requests #62840
Commits on Jul 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 503ceda - Browse repository at this point
Copy the full SHA 503cedaView commit details
Commits on Jul 18, 2019
-
Suggest trait bound on type parameter when it is unconstrained
Given ``` mented on Jan 26, 2015 • trait Foo { fn method(&self) {} } fn call_method<T>(x: &T) { x.method() } ``` suggest constraining `T` with `Foo`.
Configuration menu - View commit details
-
Copy full SHA for f22bc2d - Browse repository at this point
Copy the full SHA f22bc2dView commit details -
Fix typo in src/libstd/net/udp.rs doc comment
Affect is usually used as a verb, effect as a verb.
Configuration menu - View commit details
-
Copy full SHA for 48b6069 - Browse repository at this point
Copy the full SHA 48b6069View commit details -
normalize use of backticks in compiler messages for libcore/ptr
Samy Kacimi committedJul 18, 2019 Configuration menu - View commit details
-
Copy full SHA for 886fb21 - Browse repository at this point
Copy the full SHA 886fb21View commit details
Commits on Jul 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 33452b0 - Browse repository at this point
Copy the full SHA 33452b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13ed0cf - Browse repository at this point
Copy the full SHA 13ed0cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c1e405 - Browse repository at this point
Copy the full SHA 7c1e405View commit details -
Configuration menu - View commit details
-
Copy full SHA for 469b7a9 - Browse repository at this point
Copy the full SHA 469b7a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6735a6 - Browse repository at this point
Copy the full SHA c6735a6View commit details -
Revert "Disable stack probing for gnux32."
This reverts commit 42d652e.
Configuration menu - View commit details
-
Copy full SHA for 10d4159 - Browse repository at this point
Copy the full SHA 10d4159View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5b2859 - Browse repository at this point
Copy the full SHA f5b2859View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9dbe2e7 - Browse repository at this point
Copy the full SHA 9dbe2e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for b361864 - Browse repository at this point
Copy the full SHA b361864View commit details -
rustc: Compile the
fmt_macros
crate as an rlibI think this was left out by accident from the "convert everything to rlibs" commit, there's no need for this to be a dylib just as everything else doesn't need to be a dylib!
Configuration menu - View commit details
-
Copy full SHA for c1b4d62 - Browse repository at this point
Copy the full SHA c1b4d62View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6e027d - Browse repository at this point
Copy the full SHA c6e027dView commit details -
normalize use of backticks in compiler messages for librustc_metadata
Samy Kacimi committedJul 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 19a848d - Browse repository at this point
Copy the full SHA 19a848dView commit details
Commits on Jul 20, 2019
-
normalize use of backticks in compiler messages for librustc_incremental
Samy Kacimi committedJul 20, 2019 Configuration menu - View commit details
-
Copy full SHA for 60ca55c - Browse repository at this point
Copy the full SHA 60ca55cView commit details
Commits on Jul 21, 2019
-
Rollup merge of rust-lang#62709 - nhynes:test-maplike-fromiter, r=cuv…
…iper Test that maplike FromIter satisfies uniqueness This PR adds a simple assertion to the `HashMap` and `HashSet` tests to ensure that uniqueness is satisfied when `FromIter`ing. This is useful for people who want to test their custom type against the Map/Set interfaces since they'll copy the tests wholesale but possibly miss this bug (where _they_ = _me_).
Configuration menu - View commit details
-
Copy full SHA for eb1f631 - Browse repository at this point
Copy the full SHA eb1f631View commit details -
Rollup merge of rust-lang#62746 - RalfJung:deprecated, r=KodrAus
do not use assume_init in std::io Cc rust-lang#62397
Configuration menu - View commit details
-
Copy full SHA for 9182b70 - Browse repository at this point
Copy the full SHA 9182b70View commit details -
Rollup merge of rust-lang#62772 - estebank:trait-bound, r=matthewjasper
Suggest trait bound on type parameter when it is unconstrained Given ``` trait Foo { fn method(&self) {} } fn call_method<T>(x: &T) { x.method() } ``` suggest constraining `T` with `Foo`. Fix rust-lang#21673, fix rust-lang#41030.
Configuration menu - View commit details
-
Copy full SHA for 785acaf - Browse repository at this point
Copy the full SHA 785acafView commit details -
Rollup merge of rust-lang#62787 - Indy2222:master, r=Mark-Simulacrum
Fix typo in src/libstd/net/udp.rs doc comment Affect is usually used as a verb, effect as a verb.
Configuration menu - View commit details
-
Copy full SHA for c8c401a - Browse repository at this point
Copy the full SHA c8c401aView commit details -
Rollup merge of rust-lang#62788 - fakenine:normalize_use_of_backticks…
…_compiler_messages_p9, r=Centril normalize use of backticks in compiler messages for libcore/ptr rust-lang#60532
Configuration menu - View commit details
-
Copy full SHA for 8d91abc - Browse repository at this point
Copy the full SHA 8d91abcView commit details -
Rollup merge of rust-lang#62791 - estebank:type-ascription, r=petroch…
…enkov Handle more cases of typos misinterpreted as type ascription Fix rust-lang#60933, rust-lang#54516. CC rust-lang#47666, rust-lang#34255, rust-lang#48016.
Configuration menu - View commit details
-
Copy full SHA for 38532ae - Browse repository at this point
Copy the full SHA 38532aeView commit details -
Rollup merge of rust-lang#62804 - lundibundi:help-infer-const-static,…
… r=eddyb rustc_typeck: improve diagnostics for _ const/static declarations This continues rust-lang#62694 and adds type suggestions to const/static declarations with `_` type. r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for a82c60b - Browse repository at this point
Copy the full SHA a82c60bView commit details -
Rollup merge of rust-lang#62808 - crlf0710:gnux32_stack_probe, r=nikic
Revert "Disable stack probing for gnux32." This reverts commit 42d652e. (rust-lang#59686) Closes rust-lang#59674.
Configuration menu - View commit details
-
Copy full SHA for cc8ae62 - Browse repository at this point
Copy the full SHA cc8ae62View commit details -
Rollup merge of rust-lang#62812 - fakenine:normalize_use_of_backticks…
…_compiler_messages_p11, r=GuillaumeGomez normalize use of backticks in compiler messages for librustc_metadata rust-lang#60532
Configuration menu - View commit details
-
Copy full SHA for a343f7d - Browse repository at this point
Copy the full SHA a343f7dView commit details -
Rollup merge of rust-lang#62813 - alexcrichton:less-dylib, r=Mark-Sim…
…ulacrum rustc: Compile the `fmt_macros` crate as an rlib I think this was left out by accident from the "convert everything to rlibs" commit, there's no need for this to be a dylib just as everything else doesn't need to be a dylib!
Configuration menu - View commit details
-
Copy full SHA for b7d136f - Browse repository at this point
Copy the full SHA b7d136fView commit details -
Rollup merge of rust-lang#62832 - fakenine:normalize_use_of_backticks…
…_compiler_messages_p12, r=Centril normalize use of backticks in compiler messages for librustc_incremental rust-lang#60532
Configuration menu - View commit details
-
Copy full SHA for 6558b98 - Browse repository at this point
Copy the full SHA 6558b98View commit details