diff options
| author | Valerii Hiora <[email protected]> | 2014-12-11 13:44:37 +0200 |
|---|---|---|
| committer | Valerii Hiora <[email protected]> | 2014-12-11 13:44:37 +0200 |
| commit | c9220900753052a946abf6ac6de172d4a5e98b43 (patch) | |
| tree | 57b5e5c37c607769671fbbb56dac66b5a58c3856 /src/bn | |
| parent | Merge pull request #117 from Ummon/master (diff) | |
| download | rust-openssl-c9220900753052a946abf6ac6de172d4a5e98b43.tar.xz rust-openssl-c9220900753052a946abf6ac6de172d4a5e98b43.zip | |
Update to nightly: explicit Copy trait
Diffstat (limited to 'src/bn')
| -rw-r--r-- | src/bn/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bn/mod.rs b/src/bn/mod.rs index 2536f8a5..069c6b22 100644 --- a/src/bn/mod.rs +++ b/src/bn/mod.rs @@ -7,6 +7,7 @@ use ssl::error::SslError; pub struct BigNum(*mut ffi::BIGNUM); +#[deriving(Copy)] #[repr(C)] pub enum RNGProperty { MsbMaybeZero = -1, |