2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-03 23:45:27 +00:00

[#1211] Typo (missing operator=)

This commit is contained in:
Francis Dupont
2020-05-08 23:05:49 +02:00
parent 2ead95f0d5
commit 622d18f747

View File

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