diff options
author | myrtle <gatecat@ds0.me> | 2022-11-10 15:40:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 15:40:50 +0100 |
commit | 79cb2f9e20341c7e162ed9a08163087d0f158461 (patch) | |
tree | a4ee95968e016e71dfd022c38040dcf0c130f836 /common | |
parent | 6930ab3acd6be88c0533785691f24ef5460000c6 (diff) | |
parent | 8a69bd0735dcdce0d19f999725ec132236011833 (diff) | |
download | nextpnr-79cb2f9e20341c7e162ed9a08163087d0f158461.tar.gz nextpnr-79cb2f9e20341c7e162ed9a08163087d0f158461.tar.bz2 nextpnr-79cb2f9e20341c7e162ed9a08163087d0f158461.zip |
Merge pull request #1041 from YosysHQ/gatecat/fix-copy-warning
Fix "implicit copy constructor for 'Property' is deprecated"
Diffstat (limited to 'common')
-rw-r--r-- | common/kernel/property.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; |