Browse Source

Inherit _publicly_ from shared_from_this in I2PService

pull/1060/head
Peter Jankuliak 6 years ago
parent
commit
e630b8f8a8
  1. 2
      libi2pd_client/I2PService.h

2
libi2pd_client/I2PService.h

@ -14,7 +14,7 @@ namespace i2p @@ -14,7 +14,7 @@ namespace i2p
namespace client
{
class I2PServiceHandler;
class I2PService : std::enable_shared_from_this<I2PService>
class I2PService : public std::enable_shared_from_this<I2PService>
{
public:
typedef std::function<void(const boost::system::error_code &)> ReadyCallback;

Loading…
Cancel
Save