IPhreeqc: ifdef'd out references to std::cerr and std::cout

This commit is contained in:
Scott R Charlton 2019-11-23 21:14:02 -07:00
parent f6023203e2
commit 9d49905cd2

View File

@ -2867,8 +2867,10 @@ Phreeqc &Phreeqc::operator=(const Phreeqc &rhs)
// copy Phreeqc object to this
//this->phrq_io = rhs.phrq_io;
//this->phrq_io = new PHRQ_io;
#if !defined(R_SO)
this->phrq_io->Set_output_ostream(&std::cout);
this->phrq_io->Set_error_ostream(&std::cerr);
#endif
this->init();
this->initialize();
this->InternalCopy(&rhs);