Merge pull request #1041 from YosysHQ/gatecat/fix-copy-warning

Fix "implicit copy constructor for 'Property' is deprecated"
This commit is contained in:
myrtle 2022-11-10 15:40:50 +01:00 committed by GitHub
commit 79cb2f9e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;