fixed warnings

This commit is contained in:
orignal 2023-04-03 22:50:31 -04:00
parent 0c8a80b6f8
commit dc6499aa98
2 changed files with 2 additions and 2 deletions

View file

@ -165,7 +165,7 @@ namespace tunnel
bool IsInbound() const override { return true; }
// override TunnelBase
void Cleanup () { m_Endpoint.Cleanup (); };
void Cleanup () override { m_Endpoint.Cleanup (); };
private: