set but not used

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@8826 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
Scott R Charlton 2014-07-09 23:52:45 +00:00
parent 13a7a2b874
commit 9800894e5f
2 changed files with 4 additions and 4 deletions

View File

@ -255,7 +255,7 @@ void CSelectedOutput::Serialize(
doubles.clear();
strings.clear();
size_t nrows = this->m_nRowCount;
// size_t nrows = this->m_nRowCount;
size_t ncols = this->m_vecVarHeadings.size();
longs.push_back((long) 1);

View File

@ -52,7 +52,7 @@ IPhreeqc::IPhreeqc(void)
mutex_lock(&map_lock);
this->Index = IPhreeqc::InstancesIndex++;
std::map<size_t, IPhreeqc*>::value_type instance(this->Index, this);
std::pair<std::map<size_t, IPhreeqc*>::iterator, bool> pr = IPhreeqc::Instances.insert(instance);
/*std::pair<std::map<size_t, IPhreeqc*>::iterator, bool> pr = */IPhreeqc::Instances.insert(instance);
mutex_unlock(&map_lock);
this->SelectedOutputStringOn[1] = false;
@ -1164,13 +1164,13 @@ void IPhreeqc::do_run(const char* sz_routine, std::istream* pis, PFN_PRERUN_CALL
#endif
::sprintf(token, "Reading input data for simulation %d.", this->PhreeqcPtr->simulation);
bool save_punch_in = this->PhreeqcPtr->SelectedOutput_map.size() > 0;
// bool save_punch_in = this->PhreeqcPtr->SelectedOutput_map.size() > 0;
this->PhreeqcPtr->dup_print(token, TRUE);
if (this->PhreeqcPtr->read_input() == EOF)
break;
bool bWarning = false;
// bool bWarning = false;
std::map< int, SelectedOutput >::iterator mit = this->PhreeqcPtr->SelectedOutput_map.begin();
for (; mit != this->PhreeqcPtr->SelectedOutput_map.end(); ++mit)
{