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

Skip to content

Rollup of 10 pull requests #63517

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

Closed
wants to merge 25 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a1df132
Deduplicate some error messages
Jul 17, 2019
43a2cbd
lifetime elision: add conforming-to-fn tests.
Centril Aug 8, 2019
a694782
lifetime elision: add non-conforming-to-fn tests.
Centril Aug 8, 2019
d9294a2
lifetime elision: document conformance of 'async fn' to 'fn'.
Centril Aug 8, 2019
f395787
Add async version of self_lifetime.rs test.
Centril Aug 8, 2019
5ce8f7a
Add async versions of arbitrary_self_types_pin_lifetime tests.
Centril Aug 8, 2019
2644205
Remove unneeded comment in src/libcore/hash/mod.rs
sd234678 Aug 9, 2019
51ce121
Implement Clone, Display for ascii::EscapeDefault
Aug 9, 2019
fa7a40c
Document From trait for BinaryHeap
Observer42 Aug 12, 2019
eb832b2
ci: move mirrors to their standalone bucket
pietroalbini Aug 12, 2019
91af5c2
Bring back suggestion for splitting `<-` into `< -`
iluuu1994 Aug 11, 2019
fecf305
DiagnosticBuilder docs
RalfJung Aug 12, 2019
e30480c
Apply suggestions from code review
Aug 12, 2019
34dcca2
syntax: account for CVarArgs being in the argument list.
eddyb Aug 11, 2019
861d1bb
typeck: Prohibit RPIT types that inherit lifetimes
davidtwco Jul 21, 2019
9365d44
Rollup merge of #62760 - chansuke:dedupe-error-messages, r=zackmdavis
Centril Aug 13, 2019
95d7635
Rollup merge of #62849 - davidtwco:prohibit-inheriting-lifetimes, r=n…
Centril Aug 13, 2019
85662a5
Rollup merge of #63383 - Centril:async-lifetime-elision-tests, r=niko…
Centril Aug 13, 2019
1b26851
Rollup merge of #63421 - clarfon:escape_default, r=dtolnay
C 8000 entril Aug 13, 2019
466312c
Rollup merge of #63459 - eddyb:issue-63430, r=petrochenkov
Centril Aug 13, 2019
87ec7b4
Rollup merge of #63475 - iluuu1994:issue-62632, r=Centril
Centril Aug 13, 2019
640548c
Rollup merge of #63485 - pietroalbini:new-mirror-bucket, r=alexcrichton
Centril Aug 13, 2019
716a818
Rollup merge of #63486 - Observer42:document-from-trait-in-binaryheap…
Centril Aug 13, 2019
e3115be
Rollup merge of #63488 - RalfJung:diagnostic-docs, r=zackmdavis
Centril Aug 13, 2019
f1651d8
Rollup merge of #63493 - sd234678:remove-unneeded-comment-from-src/li…
Centril Aug 13, 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 unneeded comment in src/libcore/hash/mod.rs
  • Loading branch information
sd234678 committed Aug 9, 2019
commit 2644205578b6d5259c59c099cc3d29ab03364931
2 changes: 0 additions & 2 deletions src/libcore/hash/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,6 @@ impl<H> PartialEq for BuildHasherDefault<H> {
#[stable(since = "1.29.0", feature = "build_hasher_eq")]
impl<H> Eq for BuildHasherDefault<H> {}

//////////////////////////////////////////////////////////////////////////////

mod impls {
use crate::mem;
use crate::slice;
Expand Down
0