From: Francis Dupont Date: Wed, 25 Nov 2015 10:32:04 +0000 (+0100) Subject: [4097a] Added (non-)const comment X-Git-Tag: trac4204fd_base~2^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6bced0e1c3c711f0035533155a6b62a960aa7fe;p=thirdparty%2Fkea.git [4097a] Added (non-)const comment --- diff --git a/src/bin/dhcp4/dhcp4_srv.h b/src/bin/dhcp4/dhcp4_srv.h index bebef89aba..ab50d8dc50 100644 --- a/src/bin/dhcp4/dhcp4_srv.h +++ b/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_); }