mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 17:08:45 +00:00
Fix compilation error
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
473bc2bc81
commit
ef7bc63747
1 changed files with 1 additions and 1 deletions
|
@ -537,7 +537,7 @@ class smt_printer {
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_bound(symbol const& name) {
|
void print_bound(symbol const& name) {
|
||||||
if (!is_smt2 && (name.is_numerical() || '?' != name.bare_str()[0])) {
|
if (!m_is_smt2 && (name.is_numerical() || '?' != name.bare_str()[0])) {
|
||||||
m_out << "?";
|
m_out << "?";
|
||||||
}
|
}
|
||||||
m_out << name;
|
m_out << name;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue