changed the following in order to pass make check on linux

#ifdef _DEBUG
  this->OutputFileOn = false;
#endif

to

#if !defined(NDEBUG)
  this->OutputFileOn = false;
#endif



git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@9292 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2015-02-20 05:49:48 +00:00
parent 9e8433dd5b
commit 6db24c4ddf

View File

@ -70,7 +70,7 @@ IPhreeqc::IPhreeqc(void)
IPhreeqc::~IPhreeqc(void)
{
#ifdef _DEBUG
#if !defined(NDEBUG)
this->OutputFileOn = false;
#endif
delete this->PhreeqcPtr;