Solaris 10 update

no need for a local m_temp variable.
This commit is contained in:
Harry Moffat 2007-03-20 21:48:49 +00:00
parent 5f3e143a90
commit a0d3e62607

View file

@ -218,7 +218,7 @@ namespace Cantera {
doublereal PDSS::
enthalpy_mole() const {
//m_tp->_updateThermo();
double m_temp = m_tp->temperature();
m_temp = m_tp->temperature();
double RT = GasConstant * m_temp;
return m_h0_RT_ptr[m_spindex] * RT;
}