aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/ecc_key
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-03 22:09:27 +0000
committerlloyd <[email protected]>2010-03-03 22:09:27 +0000
commit1d43c2587e24a3e9c8cabbd75e34d87da0456340 (patch)
treed61e84975a6f0461e928a1279ab63ac081d4ec07 /src/pubkey/ecc_key
parent5d7adb7ab69a4aa84117a1f1b966697c914cefe7 (diff)
Unused variable warning in catch statement
Diffstat (limited to 'src/pubkey/ecc_key')
-rw-r--r--src/pubkey/ecc_key/ecc_key.cpp2
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");
}