diff options
author | lloyd <[email protected]> | 2010-03-03 22:09:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-03 22:09:27 +0000 |
commit | 1d43c2587e24a3e9c8cabbd75e34d87da0456340 (patch) | |
tree | d61e84975a6f0461e928a1279ab63ac081d4ec07 /src/pubkey/ecc_key | |
parent | 5d7adb7ab69a4aa84117a1f1b966697c914cefe7 (diff) |
Unused variable warning in catch statement
Diffstat (limited to 'src/pubkey/ecc_key')
-rw-r--r-- | src/pubkey/ecc_key/ecc_key.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.cpp b/src/pubkey/ecc_key/ecc_key.cpp index e1559fc92..22d7aceb4 100644 --- a/src/pubkey/ecc_key/ecc_key.cpp +++ b/src/pubkey/ecc_key/ecc_key.cpp @@ -145,7 +145,7 @@ EC_PrivateKey::EC_PrivateKey(RandomNumberGenerator& rng, { public_key.check_invariants(); } - catch(Illegal_Point& e) + catch(Illegal_Point) { throw Internal_Error("ECC private key generation failed"); } |