variable not assigned in operator=

cppcheck (via Codacy) points out that one member vairable was not assigned.
This commit is contained in:
Gregory A Lundberg 2018-01-24 22:19:36 -06:00
parent 84194f76ef
commit 45d101e8ca
No known key found for this signature in database
GPG Key ID: 149484078AE8AE9E

View File

@ -67,6 +67,7 @@ public:
icon_ = rhs.icon_;
label_ = rhs.label_;
desc_ = rhs.desc_;
default_ = rhs.default_;
}
return *this;
}