3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-29 14:30:07 +00:00

don't flush stream when printing param vals

This commit is contained in:
Nuno Lopes 2023-01-03 09:35:17 +00:00
parent d4490738bc
commit d30cb55bae
13 changed files with 14 additions and 14 deletions

View file

@ -33,8 +33,8 @@ struct bit_blaster_params {
#endif
void display(std::ostream & out) const {
out << "m_bb_ext_gates=" << m_bb_ext_gates << std::endl;
out << "m_bb_quantifiers=" << m_bb_quantifiers << std::endl;
out << "m_bb_ext_gates=" << m_bb_ext_gates << '\n';
out << "m_bb_quantifiers=" << m_bb_quantifiers << '\n';
}
};