3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-28 08:58:44 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-09-20 07:27:48 -07:00
parent d3d05e2e99
commit ba5c9c3883
3 changed files with 16 additions and 11 deletions

View file

@ -801,7 +801,7 @@ public:
bool first_def = true;
for (datatype::def* d : defs) {
if (!first_def) m_out << "\n "; else first_def = false;
m_out << "(" << d->name() << " " << d->params().size() << ")";
m_out << "(" << ensure_quote(d->name()) << " " << d->params().size() << ")";
}
m_out << ") (";
bool first_sort = true;