mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
pass metadata: fixed the MetadataWriter object initializer so GCC 4.8 is happy
This commit is contained in:
committed by
N. Engelhardt
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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user