Skip to content

Commit

Permalink
Remove unneeded Copy bound
Browse files Browse the repository at this point in the history
Closes #23
  • Loading branch information
hdevalence committed Aug 27, 2018
1 parent 8c33dfd commit e332e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ pub trait ConditionallyAssignable {
#[cfg(feature = "generic-impls")]
impl<T> ConditionallyAssignable for T
where
T: Copy + ConditionallySelectable,
T: ConditionallySelectable,
{
#[inline]
fn conditional_assign(&mut self, other: &Self, choice: Choice) {
Expand Down

0 comments on commit e332e91

Please sign in to comment.