diff options
| author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2016-09-22 11:25:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-22 11:25:01 -0700 |
| commit | b60fc5d16ab5b089f0eba395a838375f5a92f11c (patch) | |
| tree | 1411af35b45e18e76214f04bb5dfe657f944116f /src/libstd/sync | |
| parent | b474c82add775cfade81766da09d5f2ef632f09e (diff) | |
| parent | b4c739dbdd028277c17c90ebf613c520433622d1 (diff) | |
| download | rust-b60fc5d16ab5b089f0eba395a838375f5a92f11c.tar.gz rust-b60fc5d16ab5b089f0eba395a838375f5a92f11c.zip | |
Rollup merge of #36423 - GuillaumeGomez:eq_impl, r=pnkfelix
Add missing Eq implementations Part of #36301.
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/mpsc/select.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/select.rs b/src/libstd/sync/mpsc/select.rs index 677544d335e..51b08bd75c4 100644 --- a/src/libstd/sync/mpsc/select.rs +++ b/src/libstd/sync/mpsc/select.rs @@ -103,7 +103,7 @@ pub struct Handle<'rx, T:Send+'rx> { struct Packets { cur: *mut Handle<'static, ()> } #[doc(hidden)] -#[derive(PartialEq)] +#[derive(PartialEq, Eq)] pub enum StartResult { Installed, Abort, |
