pass jny: fixed missing quotes around the type value for the cell sort

This commit is contained in:
Aki Van Ness 2022-03-10 11:04:44 -05:00 committed by N. Engelhardt
parent 2e792857e9
commit 5a016713cc
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ struct JnyWriter
const auto _indent = gen_indent(indent_level);
f << _indent << "{\n";
f << stringf(" %s\"type\": %s,\n", _indent.c_str(), sort.first.c_str());
f << stringf(" %s\"type\": \"%s\",\n", _indent.c_str(), sort.first.c_str());
f << _indent << " \"ports\": [\n";
write_cell_ports(port_cell, indent_level + 2);