fixed memory leak

This commit is contained in:
orignal 2014-01-12 22:31:26 -05:00
parent 9b92641112
commit 34d2ae4500
2 changed files with 18 additions and 6 deletions

View file

@ -27,7 +27,9 @@ namespace data
public:
LeaseSet (const uint8_t * buf, int len);
LeaseSet (const LeaseSet& ) = default;
LeaseSet& operator=(const LeaseSet& ) = default;
// implements RoutingDestination
const Identity& GetIdentity () const { return m_Identity; };
const IdentHash& GetIdentHash () const { return m_IdentHash; };