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

This commit is contained in:
Aki Van Ness 2021-11-18 07:34:14 -05:00 committed by N. Engelhardt
parent 7a275567df
commit 6a90b42c48
1 changed files with 1 additions and 1 deletions

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)
{