1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-01 01:44:14 +00:00

fixed warning

This commit is contained in:
orignal 2023-04-04 13:57:46 -04:00
parent 220ef283de
commit e3fb9d8483

View File

@ -97,7 +97,7 @@ namespace tunnel
void Cleanup () override { m_Endpoint.Cleanup (); }
void HandleTunnelDataMsg (std::shared_ptr<i2p::I2NPMessage>&& tunnelMsg) override;
size_t GetNumTransmittedBytes () const { return m_Endpoint.GetNumReceivedBytes (); }
size_t GetNumTransmittedBytes () const override { return m_Endpoint.GetNumReceivedBytes (); }
private: