Browse Source

fix warnings: delete called on 'XX' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor]

pull/145/head
Wladimir J. van der Laan 12 years ago
parent
commit
2e120f28e0
  1. 2
      src/keystore.h

2
src/keystore.h

@ -15,6 +15,8 @@ protected:
mutable CCriticalSection cs_KeyStore;
public:
virtual ~CKeyStore() {}
// Add a key to the store.
virtual bool AddKey(const CKey& key) =0;

Loading…
Cancel
Save