Implement `Clone` for Bls12.

This commit is contained in:
Sean Bowe 2017-11-20 23:53:58 -07:00
parent 4b366a143d
commit 4a1ac94799
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ use super::{Engine, CurveAffine, Field, BitIterator};
const BLS_X: u64 = 0xd201000000010000;
const BLS_X_IS_NEGATIVE: bool = true;
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Bls12;
impl Engine for Bls12 {