From 2c8b294d26facc7ccca1f5a8dc26765a2ee7d75d Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 10 Aug 2011 18:18:27 +0300 Subject: [PATCH] Add missing virtual keywords --- source/inet.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/inet.h b/source/inet.h index 94436f9..20f433a 100644 --- a/source/inet.h +++ b/source/inet.h @@ -23,8 +23,8 @@ public: virtual SysAddr to_sys() const; - Family get_family() const { return INET; } - std::string str() const; + virtual Family get_family() const { return INET; } + virtual std::string str() const; }; } // namespace Net -- 2.43.0