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:
Aki Van Ness 2022-02-24 09:54:03 -05:00 committed by N. Engelhardt
parent 43b2fc5566
commit 1be9bef28b
1 changed files with 2 additions and 2 deletions

View File

@ -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)