diff options
| author | Aaron Weiss <[email protected]> | 2014-12-19 10:45:19 -0500 |
|---|---|---|
| committer | Aaron Weiss <[email protected]> | 2014-12-19 10:45:19 -0500 |
| commit | a637f2b0bfaa077e1e56edc83d76677bccff09c6 (patch) | |
| tree | e252abe5b1fcea61cab36f101315189a650d7ad7 /src/bn | |
| parent | Merge pull request #119 from glennw/android-static-linking (diff) | |
| download | rust-openssl-a637f2b0bfaa077e1e56edc83d76677bccff09c6.tar.xz rust-openssl-a637f2b0bfaa077e1e56edc83d76677bccff09c6.zip | |
Updated for language changes to macros.
Diffstat (limited to 'src/bn')
| -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> { |