diff options
| author | Steven Fackler <[email protected]> | 2014-12-19 11:20:21 -0500 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-12-19 11:20:21 -0500 |
| commit | 3329793492655ed75000544bae9fa3e299ce7969 (patch) | |
| tree | e252abe5b1fcea61cab36f101315189a650d7ad7 /src/bn/mod.rs | |
| parent | Merge pull request #119 from glennw/android-static-linking (diff) | |
| parent | Updated for language changes to macros. (diff) | |
| download | rust-openssl-3329793492655ed75000544bae9fa3e299ce7969.tar.xz rust-openssl-3329793492655ed75000544bae9fa3e299ce7969.zip | |
Merge pull request #126 from aatxe/master
Updated for language changes to macros.
Diffstat (limited to 'src/bn/mod.rs')
| -rw-r--r-- | src/bn/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bn/mod.rs b/src/bn/mod.rs index b409cb73..721fcea5 100644 --- a/src/bn/mod.rs +++ b/src/bn/mod.rs @@ -26,7 +26,7 @@ macro_rules! with_ctx( r } }); -) +); macro_rules! with_bn( ($name:ident, $action:block) => ({ @@ -42,7 +42,7 @@ macro_rules! with_bn( Err(err) => Err(err), } }); -) +); macro_rules! with_bn_in_ctx( ($name:ident, $ctx_name:ident, $action:block) => ({ @@ -66,7 +66,7 @@ macro_rules! with_bn_in_ctx( Err(err) => Err(err), } }); -) +); impl BigNum { pub fn new() -> Result<BigNum, SslError> { |