mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
pass metadata: fixed the MetadataWriter object initializer so GCC 4.8 is happy
This commit is contained in:
parent
7a275567df
commit
6a90b42c48
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ struct MetadataWriter
|
|||
}
|
||||
|
||||
public:
|
||||
MetadataWriter(std::ostream &f, bool use_selection) noexcept: f{f}, _use_selection{use_selection} { }
|
||||
MetadataWriter(std::ostream &f, bool use_selection) noexcept: f(f), _use_selection(use_selection) { }
|
||||
|
||||
void write_metadata(Design *design)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue