From: Francis Dupont Date: Fri, 8 May 2020 21:05:49 +0000 (+0200) Subject: [#1211] Typo (missing operator=) X-Git-Tag: Kea-1.7.9~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=622d18f747a7baf769784bccb83d5a44ce1a360b;p=thirdparty%2Fkea.git [#1211] Typo (missing operator=) --- diff --git a/src/lib/dhcpsrv/cfg_option.h b/src/lib/dhcpsrv/cfg_option.h index 7db9d22c55..1e49cdbce9 100644 --- a/src/lib/dhcpsrv/cfg_option.h +++ b/src/lib/dhcpsrv/cfg_option.h @@ -116,7 +116,7 @@ public: OptionDescriptor& operator=(const OptionDescriptor& other) { if (this != &other) { // Not self-assignment. - data::StampedElement=(other); + data::StampedElement::operator=(other); option_ = other.option_; persistent_ = other.persistent_; formatted_value_ = other.formatted_value_;