]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[4097a] Added (non-)const comment
authorFrancis Dupont <fdupont@isc.org>
Wed, 25 Nov 2015 10:32:04 +0000 (11:32 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 25 Nov 2015 10:32:04 +0000 (11:32 +0100)
src/bin/dhcp4/dhcp4_srv.h

index bebef89aba3c214cc11960da13734759bc190563..ab50d8dc5024702eeda11e6570d51ff59baa4849 100644 (file)
@@ -111,12 +111,12 @@ public:
         return (context_);
     }
 
-    /// @brief Returns the configured option list
+    /// @brief Returns the configured option list (non-const version)
     CfgOptionList& getCfgOptionList() {
         return (cfg_option_list_);
     }
 
-    /// @brief Returns the configured option list
+    /// @brief Returns the configured option list (const version)
     const CfgOptionList& getCfgOptionList() const {
         return (cfg_option_list_);
     }