Change count in dump_raw for temperature.

Bugs in include.out and errorinp.




git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/branches/ErrorHandling@5944 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2011-12-22 23:46:40 +00:00
parent b5c652e254
commit 4bb72929ed

View File

@ -203,7 +203,7 @@ cxxTemperature::dump_raw(std::ostream & s_oss, unsigned int indent, int *n_out)
s_oss << "REACTION_TEMPERATURE_RAW " << n_user_local << " " << this->description << std::endl;
s_oss << indent1;
s_oss << "-count_temps " << this->countTemps << std::endl;
s_oss << "-count_temps " << this->Get_countTemps() << std::endl;
s_oss << indent1;
s_oss << "-equal_increments " << this->equalIncrements << std::endl;
@ -417,4 +417,4 @@ Get_countTemps(void) const
return this->countTemps;
}
return (int) this->temps.size();
}
}