mirror of https://github.com/YosysHQ/yosys.git
pass jny: changed the constructor initializers to use parens rather than curly-braces to hopefully make GCC 4.8 happy
This commit is contained in:
parent
43b2fc5566
commit
1be9bef28b
|
@ -120,8 +120,8 @@ struct JnyWriter
|
||||||
|
|
||||||
public:
|
public:
|
||||||
JnyWriter(std::ostream &f, bool use_selection, bool connections, bool attributes, bool properties) noexcept:
|
JnyWriter(std::ostream &f, bool use_selection, bool connections, bool attributes, bool properties) noexcept:
|
||||||
f{f}, _use_selection{use_selection},
|
f(f), _use_selection(use_selection),
|
||||||
_include_connections{connections}, _include_attributes{attributes}, _include_properties{properties}
|
_include_connections(connections), _include_attributes(attributes), _include_properties(properties)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
void write_metadata(Design *design, uint16_t indent_level = 0)
|
void write_metadata(Design *design, uint16_t indent_level = 0)
|
||||||
|
|
Loading…
Reference in New Issue