mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
Activated argument for number of threads.
Typo in print. Revised ASSERT to avoid asserting with std::cerr. git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@10364 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
parent
092c766abd
commit
a51e899fdc
@ -1575,7 +1575,7 @@ void IPhreeqc::log_msg(const char * str)
|
||||
|
||||
void IPhreeqc::error_msg(const char *str, bool stop)
|
||||
{
|
||||
ASSERT(!(this->ErrorFileOn != (this->error_ostream != 0)));
|
||||
ASSERT(this->error_ostream == &std::cerr || (!(this->ErrorFileOn != (this->error_ostream != 0))));
|
||||
|
||||
if (this->error_ostream != NULL && this->error_on)
|
||||
{
|
||||
@ -1603,7 +1603,7 @@ void IPhreeqc::error_msg(const char *str, bool stop)
|
||||
|
||||
void IPhreeqc::warning_msg(const char *str)
|
||||
{
|
||||
ASSERT(!(this->ErrorFileOn != (this->error_ostream != 0)));
|
||||
ASSERT(this->error_ostream == &std::cerr || (!(this->ErrorFileOn != (this->error_ostream != 0))));
|
||||
|
||||
if (this->error_ostream != NULL && this->error_on)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user