mirror of https://github.com/YosysHQ/yosys.git
pass metadata: fixed the MetadataWriter object initializer so GCC 4.8 is happy
This commit is contained in:
parent
7a275567df
commit
6a90b42c48
|
@ -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…
Reference in New Issue