mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 12:51:22 +00:00
lp_tokenizer: Add missing verbose print
Three out of two places that call m_tokens.push_back() in lp_tokenizer::parse_all() were followed by a verbose print. This commit adds a verbose print to the third such place. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
a4a333bb17
commit
ebe58f78cf
1 changed files with 1 additions and 0 deletions
|
@ -411,6 +411,7 @@ private:
|
||||||
}
|
}
|
||||||
m_buffer.push_back(0);
|
m_buffer.push_back(0);
|
||||||
m_tokens.push_back(asymbol(symbol(m_buffer.c_ptr()), in.line()));
|
m_tokens.push_back(asymbol(symbol(m_buffer.c_ptr()), in.line()));
|
||||||
|
IF_VERBOSE(10, verbose_stream() << "tok: " << m_tokens.back() << "\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue