From 1be9bef28bca20014ee778a986280453a6b47a38 Mon Sep 17 00:00:00 2001 From: Aki Van Ness Date: Thu, 24 Feb 2022 09:54:03 -0500 Subject: [PATCH] pass jny: changed the constructor initializers to use parens rather than curly-braces to hopefully make GCC 4.8 happy --- backends/jny/jny.cc | 4 ++-- 1 file 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) -- 2.30.2