From eedbdba174cded025794943a69c931ae472de9cc Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Fri, 26 May 2023 15:19:16 +0300 Subject: [PATCH] [#145] addressed review comments --- src/lib/dhcpsrv/memfile_lease_mgr.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/dhcpsrv/memfile_lease_mgr.cc b/src/lib/dhcpsrv/memfile_lease_mgr.cc index 62ac6c4f1c..a4b8bda20d 100644 --- a/src/lib/dhcpsrv/memfile_lease_mgr.cc +++ b/src/lib/dhcpsrv/memfile_lease_mgr.cc @@ -393,6 +393,7 @@ public: } } +private: /// @brief Creates the IPv4 lease statistical data result set /// /// The result set is populated by iterating over the IPv4 leases in @@ -610,7 +611,6 @@ public: next_pos_ = rows_.begin(); } -private: /// @brief The Memfile storage containing the IPv4 leases to analyze Lease4Storage& storage4_; }; @@ -686,6 +686,7 @@ public: } } +private: /// @brief Creates the IPv6 lease statistical data result set /// /// The result set is populated by iterating over the IPv6 leases in @@ -963,7 +964,6 @@ public: next_pos_ = rows_.begin(); } -private: /// @brief The Memfile storage containing the IPv6 leases to analyze Lease6Storage& storage6_; }; -- 2.47.2