mirror of
https://github.com/Z3Prover/z3
synced 2026-06-06 17:10:53 +00:00
Fix quoting in low-level pretty printer (#9716)
Co-authored-by: Can Cebeci <t-cancebeci@microsoft.com>
This commit is contained in:
parent
87c22204a4
commit
5ebf5a0d9f
1 changed files with 2 additions and 1 deletions
|
|
@ -21,6 +21,7 @@ Revision History:
|
||||||
#include "ast/for_each_ast.h"
|
#include "ast/for_each_ast.h"
|
||||||
#include "ast/arith_decl_plugin.h"
|
#include "ast/arith_decl_plugin.h"
|
||||||
#include "ast/datatype_decl_plugin.h"
|
#include "ast/datatype_decl_plugin.h"
|
||||||
|
#include "ast/ast_smt2_pp.h"
|
||||||
|
|
||||||
// #define AST_LL_PP_SHOW_FAMILY_NAME
|
// #define AST_LL_PP_SHOW_FAMILY_NAME
|
||||||
|
|
||||||
|
|
@ -44,7 +45,7 @@ class ll_printer {
|
||||||
}
|
}
|
||||||
|
|
||||||
void display_name(func_decl * decl) {
|
void display_name(func_decl * decl) {
|
||||||
m_out << decl->get_name();
|
m_out << ensure_quote(decl->get_name());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool process_numeral(expr * n) {
|
bool process_numeral(expr * n) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue