pass jny: changed the constructor initializers to use parens rather than curly-braces...
authorAki Van Ness <aki@yosyshq.com>
Thu, 24 Feb 2022 14:54:03 +0000 (09:54 -0500)
committerN. Engelhardt <nakengelhardt@gmail.com>
Fri, 8 Apr 2022 06:05:15 +0000 (08:05 +0200)
backends/jny/jny.cc

index 07b4e985d2389a9d1fa16f2521aa6ab35bb87953..92424b34c10ad856432c1a817e9aaef0a0ed4ccd 100644 (file)
@@ -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)