From 8a69bd0735dcdce0d19f999725ec132236011833 Mon Sep 17 00:00:00 2001 From: gatecat Date: Thu, 10 Nov 2022 10:57:41 +0100 Subject: Fix "implicit copy constructor for 'Property' is deprecated" Signed-off-by: gatecat --- common/kernel/property.h | 1 + 1 file changed, 1 insertion(+) (limited to 'common/kernel/property.h') diff --git a/common/kernel/property.h b/common/kernel/property.h index 814b2cac..2ff085ec 100644 --- a/common/kernel/property.h +++ b/common/kernel/property.h @@ -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; -- cgit v1.2.3