mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
remove a couple more std::endl
This commit is contained in:
parent
d30cb55bae
commit
a2cc504d4a
|
@ -277,8 +277,8 @@ class mps_reader {
|
|||
} else {
|
||||
fail:
|
||||
set_m_ok_to_false();
|
||||
*m_message_stream << "cannot understand this line" << std::endl;
|
||||
*m_message_stream << "line = " << m_line << ", line number is " << m_line_number << std::endl;
|
||||
*m_message_stream << "cannot understand this line\n"
|
||||
"line = " << m_line << ", line number is " << m_line_number << std::endl;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -73,10 +73,10 @@ public:
|
|||
for (unsigned i = 0; i < sz; i++)
|
||||
for_each_expr(cp, visited, g->form(i));
|
||||
|
||||
std::cout << "(" << std::endl;
|
||||
std::cout << "(\n";
|
||||
for (auto const& kv : m_stats)
|
||||
std::cout << " :" << kv.first << " " << kv.second << std::endl;
|
||||
std::cout << ")" << std::endl;
|
||||
std::cout << " :" << kv.first << " " << kv.second << '\n';
|
||||
std::cout << ")\n";
|
||||
|
||||
g->inc_depth();
|
||||
result.push_back(g.get());
|
||||
|
|
Loading…
Reference in a new issue