Fix "implicit copy constructor for 'Property' is deprecated"

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2022-11-10 10:57:41 +01:00
parent 6930ab3acd
commit 8a69bd0735

View File

@ -46,6 +46,7 @@ struct Property
Property(const std::string &strval);
Property(State bit);
Property &operator=(const Property &other) = default;
Property(const Property &other) = default;
bool is_string;