X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fnet%2Finet.h;h=67bb6100b66005191d923d3a4210a9ea82d4cd79;hb=f97f21c17f24e1d426e5b5863676071a5809b185;hp=639e64cbb1eca5ec8c9fc2e0d5247c91600adf38;hpb=d11d422d06ca0277dff4860a0bf71b1844c94b8a;p=libs%2Fnet.git diff --git a/source/net/inet.h b/source/net/inet.h index 639e64c..67bb610 100644 --- a/source/net/inet.h +++ b/source/net/inet.h @@ -19,13 +19,13 @@ public: InetAddr(); InetAddr(const SysAddr &); - virtual InetAddr *copy() const { return new InetAddr(*this); } + InetAddr *copy() const override { return new InetAddr(*this); } - virtual SysAddr to_sys() const; + SysAddr to_sys() const override; - virtual Family get_family() const { return INET; } + Family get_family() const override { return INET; } unsigned get_port() const { return port; } - virtual std::string str() const; + std::string str() const override; }; } // namespace Net