From: Aki Van Ness Date: Thu, 24 Feb 2022 14:54:03 +0000 (-0500) Subject: pass jny: changed the constructor initializers to use parens rather than curly-braces... X-Git-Tag: yosys-0.17~40 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1be9bef28bca20014ee778a986280453a6b47a38;p=yosys.git pass jny: changed the constructor initializers to use parens rather than curly-braces to hopefully make GCC 4.8 happy --- diff --git a/backends/jny/jny.cc b/backends/jny/jny.cc index 07b4e985d..92424b34c 100644 --- a/backends/jny/jny.cc +++ b/backends/jny/jny.cc @@ -120,8 +120,8 @@ struct JnyWriter public: JnyWriter(std::ostream &f, bool use_selection, bool connections, bool attributes, bool properties) noexcept: - f{f}, _use_selection{use_selection}, - _include_connections{connections}, _include_attributes{attributes}, _include_properties{properties} + f(f), _use_selection(use_selection), + _include_connections(connections), _include_attributes(attributes), _include_properties(properties) { } void write_metadata(Design *design, uint16_t indent_level = 0)