From a0d3e626077e7e26b8e7edb4e1b24136a94f2a12 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Tue, 20 Mar 2007 21:48:49 +0000 Subject: [PATCH] Solaris 10 update no need for a local m_temp variable. --- Cantera/src/thermo/PDSS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/thermo/PDSS.cpp b/Cantera/src/thermo/PDSS.cpp index 9544d5d19..1ff6dd56e 100644 --- a/Cantera/src/thermo/PDSS.cpp +++ b/Cantera/src/thermo/PDSS.cpp @@ -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; }