Merge pull request #1041 from YosysHQ/gatecat/fix-copy-warning
Fix "implicit copy constructor for 'Property' is deprecated"
This commit is contained in:
commit
79cb2f9e20
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user