Browse Source

Merge pull request #1060 from inetic/openssl

Inherit _publicly_ from shared_from_this in I2PService
pull/1055/head
Jeff 7 years ago committed by GitHub
parent
commit
38b694a055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libi2pd_client/I2PService.h

2
libi2pd_client/I2PService.h

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

Loading…
Cancel
Save