]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] Missing override
authorFrancis Dupont <fdupont@isc.org>
Tue, 27 Mar 2018 13:39:59 +0000 (15:39 +0200)
committerFrancis Dupont <fdupont@isc.org>
Tue, 27 Mar 2018 13:39:59 +0000 (15:39 +0200)
src/lib/dhcpsrv/cql_host_data_source.h

index b2b45e432597da910b59bb81c6d3df41b2d3d3c4..75d4d45a1d60fad1fbac00b18a9a9cb8698f699b 100644 (file)
@@ -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.