aboutsummaryrefslogtreecommitdiffstats
path: root/backends/jny
diff options
context:
space:
mode:
authorAki Van Ness <aki@yosyshq.com>2022-02-24 09:54:03 -0500
committerN. Engelhardt <nakengelhardt@gmail.com>2022-04-08 08:05:15 +0200
commit1be9bef28bca20014ee778a986280453a6b47a38 (patch)
tree2fc07da970572ec0ea08f2dc4f3b10d2e6fefaa0 /backends/jny
parent43b2fc55660bd36ca9553b03ea6ddc3b2dfe4231 (diff)
downloadyosys-1be9bef28bca20014ee778a986280453a6b47a38.tar.gz
yosys-1be9bef28bca20014ee778a986280453a6b47a38.tar.bz2
yosys-1be9bef28bca20014ee778a986280453a6b47a38.zip
pass jny: changed the constructor initializers to use parens rather than curly-braces to hopefully make GCC 4.8 happy
Diffstat (limited to 'backends/jny')
-rw-r--r--backends/jny/jny.cc4
1 files changed, 2 insertions, 2 deletions
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)