pass metadata: fixed the MetadataWriter object initializer so GCC 4.8 is happy

This commit is contained in:
Aki Van Ness
2022-04-08 08:05:15 +02:00
committed by N. Engelhardt
parent 7a275567df
commit 6a90b42c48
+1 -1
View File
@@ -69,7 +69,7 @@ struct MetadataWriter
}
public:
MetadataWriter(std::ostream &f, bool use_selection) noexcept: f{f}, _use_selection{use_selection} { }
MetadataWriter(std::ostream &f, bool use_selection) noexcept: f(f), _use_selection(use_selection) { }
void write_metadata(Design *design)
{