Solaris 10 update
no need for a local m_temp variable.
This commit is contained in:
parent
5f3e143a90
commit
a0d3e62607
1 changed files with 1 additions and 1 deletions
|
|
@ -218,7 +218,7 @@ namespace Cantera {
|
||||||
doublereal PDSS::
|
doublereal PDSS::
|
||||||
enthalpy_mole() const {
|
enthalpy_mole() const {
|
||||||
//m_tp->_updateThermo();
|
//m_tp->_updateThermo();
|
||||||
double m_temp = m_tp->temperature();
|
m_temp = m_tp->temperature();
|
||||||
double RT = GasConstant * m_temp;
|
double RT = GasConstant * m_temp;
|
||||||
return m_h0_RT_ptr[m_spindex] * RT;
|
return m_h0_RT_ptr[m_spindex] * RT;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue