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

Skip to content

Rollup of 7 pull requests #52680

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 17 commits into from
Jul 25, 2018
Merged
Changes from 2 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
303306c
Add unaligned volatile intrinsics
Amanieu Jul 14, 2018
b1d2a91
impl PartialEq+Eq for BuildHasherDefault
crepererum Jul 15, 2018
1581971
Stablize Redox Unix Sockets
jD91mZM2 Jul 24, 2018
4f3ab49
libstd: Prefer `Option::map`/etc over `match` where applicable
Wallacoloo Jul 24, 2018
727bd7d
libcore: Prefer `Option::map` over `match` where applicable
Wallacoloo Jul 24, 2018
10d8213
librustc: Prefer `Option::map`/etc over `match` where applicable
Wallacoloo Jul 24, 2018
cbe5f1c
libsyntax_ext: Prefer `Option::map` over `match` where applicable
Wallacoloo Jul 24, 2018
2e33a55
Allow declaring existential types inside blocks
oli-obk Jul 23, 2018
fb08915
clarify offset function safety concerns
RalfJung Jul 24, 2018
3cce003
Release notes: add some missing 1.28 libs stabilization
SimonSapin Jul 24, 2018
06ba69d
Rollup merge of #52391 - Amanieu:volatile_unaligned, r=alexcrichton
Mark-Simulacrum Jul 24, 2018
dab595e
Rollup merge of #52402 - crepererum:build_hasher_eq, r=sfackler
Mark-Simulacrum Jul 24, 2018
f930017
Rollup merge of #52645 - oli-obk:existential_in_fn_body, r=dtolnay
Mark-Simulacrum Jul 24, 2018
28f8cb5
Rollup merge of #52656 - jD91mZM2:stablize-uds, r=alexcrichton
Mark-Simulacrum Jul 24, 2018
c7a178e
Rollup merge of #52658 - Wallacoloo:topics/use-option-methods, r=cram…
Mark-Simulacrum Jul 24, 2018
4bb8c31
Rollup merge of #52668 - RalfJung:ptr-doc, r=cramertj
Mark-Simulacrum Jul 24, 2018
1deaed9
Rollup merge of #52677 - SimonSapin:relnotes, r=Mark-Simulacrum
Mark-Simulacrum Jul 24, 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
10 changes: 10 additions & 0 deletions src/libcore/hash/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,16 @@ impl<H> Default for BuildHasherDefault<H> {
}
}

#[stable(since = "1.29.0", feature = "build_hasher_eq")]
impl<H> PartialEq for BuildHasherDefault<H> {
fn eq(&self, _other: &BuildHasherDefault<H>) -> bool {
true
}
}

#[stable(since = "1.29.0", feature = "build_hasher_eq")]
impl<H> Eq for BuildHasherDefault<H> {}

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

mod impls {
Expand Down
0