summaryrefslogtreecommitdiff
path: root/luc.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-19 09:29:02 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-19 09:29:02 -0400
commitc8fb6567da290d8e3ebc85ab0ebbbb994725ac58 (patch)
tree2c829359a822577486fb5609fd0ed087f36c9381 /luc.h
parent5bd61dcc92774f7d7a67b6085c9fe6ce9c3be786 (diff)
downloadcryptopp-git-c8fb6567da290d8e3ebc85ab0ebbbb994725ac58.tar.gz
Cleared virtual destructor warnings under GCC with -Wall
Diffstat (limited to 'luc.h')
-rw-r--r--luc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/luc.h b/luc.h
index 7a816843..b065b8ed 100644
--- a/luc.h
+++ b/luc.h
@@ -188,6 +188,7 @@ protected:
class DL_Algorithm_LUC_HMP : public DL_ElgamalLikeSignatureAlgorithm<Integer>
{
public:
+ virtual ~DL_Algorithm_LUC_HMP() { }
static const char * StaticAlgorithmName() {return "LUC-HMP";}
void Sign(const DL_GroupParameters<Integer> &params, const Integer &x, const Integer &k, const Integer &e, Integer &r, Integer &s) const;