aboutsummaryrefslogtreecommitdiffstats
path: root/backends/jny/jny.cc
diff options
context:
space:
mode:
Diffstat (limited to 'backends/jny/jny.cc')
-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)