mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 18:00:23 +00:00
remove '#include <iostream>' from headers and from unneeded places
It's harmful to have iostream everywhere as it injects functions in the compiled files
This commit is contained in:
parent
70bcf0b51d
commit
73a24ca0a9
90 changed files with 99 additions and 95 deletions
|
@ -42,6 +42,7 @@ Revision History:
|
|||
#include "smt/smt_model_finder.h"
|
||||
#include "smt/smt_parallel.h"
|
||||
#include "smt/smt_arith_value.h"
|
||||
#include <iostream>
|
||||
|
||||
namespace smt {
|
||||
|
||||
|
@ -3943,8 +3944,7 @@ namespace smt {
|
|||
if (m_fparams.m_model_on_final_check) {
|
||||
mk_proto_model();
|
||||
model_pp(std::cout, *m_proto_model);
|
||||
std::cout << "END_OF_MODEL\n";
|
||||
std::cout.flush();
|
||||
std::cout << "END_OF_MODEL" << std::endl;
|
||||
}
|
||||
|
||||
m_stats.m_num_final_checks++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue