Browse Source

[4097a] Added (non-)const comment

Francis Dupont 9 years ago
parent
commit
c6bced0e1c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/dhcp4/dhcp4_srv.h

+ 2 - 2
src/bin/dhcp4/dhcp4_srv.h

@@ -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_);
     }