From 3a65f3154df86a32e6ae49285e460f23f8ad8ff8 Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Tue, 27 Mar 2018 15:39:59 +0200 Subject: [PATCH] [master] Missing override --- src/lib/dhcpsrv/cql_host_data_source.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/dhcpsrv/cql_host_data_source.h b/src/lib/dhcpsrv/cql_host_data_source.h index b2b45e4325..75d4d45a1d 100644 --- a/src/lib/dhcpsrv/cql_host_data_source.h +++ b/src/lib/dhcpsrv/cql_host_data_source.h @@ -110,7 +110,7 @@ public: /// there. /// @throw various exceptions in case of errors virtual bool del(const SubnetID& subnet_id, - const asiolink::IOAddress& addr); + const asiolink::IOAddress& addr) override; /// @brief Attempts to delete a host by (subnet-id4, identifier-type, /// identifier). @@ -128,7 +128,7 @@ public: virtual bool del4(const SubnetID& subnet_id, const Host::IdentifierType& identifier_type, const uint8_t* identifier_begin, - const size_t identifier_len); + const size_t identifier_len) override; /// @brief Attempts to delete a host by (subnet-id6, identifier-type, /// identifier). @@ -146,7 +146,7 @@ public: virtual bool del6(const SubnetID& subnet_id, const Host::IdentifierType& identifier_type, const uint8_t* identifier_begin, - const size_t identifier_len); + const size_t identifier_len) override; /// @brief Return all @ref Host objects for the specified @ref HWAddr or /// @ref DUID. -- 2.47.2