Skip to content

Commit

Permalink
Merge pull request #27 from dalek-cryptography/remove-copy-bound
Browse files Browse the repository at this point in the history
Remove unneeded Copy bound
  • Loading branch information
hdevalence committed Aug 27, 2018
2 parents d9eeda6 + e332e91 commit fcd098b
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 fcd098b

Please sign in to comment.