diff options
author | lloyd <[email protected]> | 2009-07-21 06:54:48 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-21 06:54:48 +0000 |
commit | 2af0993befed5397483fbf154254a400cb14bbef (patch) | |
tree | 5547aa027193a71dff90e28eab64f38808fdebe6 /src/pubkey/ecc_key | |
parent | 9249f35a13744d2e676bd6d77bf2312edbe0c79b (diff) |
Fix some unused variable nits pointed out by icc 10.1
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 9af63bdcd..615efecf1 100644 --- a/src/pubkey/ecc_key/ecc_key.cpp +++ b/src/pubkey/ecc_key/ecc_key.cpp @@ -57,7 +57,7 @@ void EC_PublicKey::X509_load_hook() affirm_init(); mp_public_point->check_invariants(); } - catch(Illegal_Point exc) + catch(Illegal_Point) { throw Decoding_Error("decoded public point was found not to lie on curve"); } |