]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/inet6.h
Use default member initializers where possible
[libs/net.git] / source / net / inet6.h
index cc33e764936e4dbaaa4df8311774f6132407bbff..3b48a63fe089dc6733b722cd2c04f33f01adb325 100644 (file)
@@ -9,20 +9,20 @@ namespace Net {
 class Inet6Addr: public SockAddr
 {
 private:
-       unsigned char addr[16];
-       unsigned port;
+       unsigned char addr[16] = { };
+       unsigned port = 0;
 
 public:
-       Inet6Addr();
+       Inet6Addr() = default;
        Inet6Addr(const SysAddr &);
 
-       virtual Inet6Addr *copy() const { return new Inet6Addr(*this); }
+       Inet6Addr *copy() const override { return new Inet6Addr(*this); }
 
-       virtual SysAddr to_sys() const;
+       SysAddr to_sys() const override;
 
-       virtual Family get_family() const { return INET6; }
+       Family get_family() const override { return INET6; }
        unsigned get_port() const { return port; }
-       virtual std::string str() const;
+       std::string str() const override;
 };
 
 } // namespace Net