From 800897848c64ac575984a7b38e07111d97ec8670 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 30 Sep 2008 16:47:39 +0000 Subject: Remove warnings in KDF1, KDF2 copy constructors --- src/kdf/kdf1/kdf1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kdf/kdf1') diff --git a/src/kdf/kdf1/kdf1.h b/src/kdf/kdf1/kdf1.h index 6a4b0f113..1c1fd7839 100644 --- a/src/kdf/kdf1/kdf1.h +++ b/src/kdf/kdf1/kdf1.h @@ -22,7 +22,7 @@ class BOTAN_DLL KDF1 : public KDF const byte P[], u32bit P_len) const; KDF1(HashFunction* h) : hash(h) {} - KDF1(const KDF1& other) : hash(other.hash->clone()) {} + KDF1(const KDF1& other) : KDF(), hash(other.hash->clone()) {} ~KDF1() { delete hash; } private: -- cgit v1.2.3