From 6216127e052a9263c015ccbb9a72e12587a29aba Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Mon, 1 Dec 2008 05:05:12 +0000 Subject: [PATCH] Fixed an error in the assignment operator. --- Cantera/src/thermo/SurfPhase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Cantera/src/thermo/SurfPhase.cpp b/Cantera/src/thermo/SurfPhase.cpp index bb6aea6e6..6a80e2a63 100644 --- a/Cantera/src/thermo/SurfPhase.cpp +++ b/Cantera/src/thermo/SurfPhase.cpp @@ -130,6 +130,7 @@ namespace Cantera { m_press = right.m_press; m_tlast = right.m_tlast; m_h0 = right.m_h0; + m_s0 = right.m_s0; m_cp0 = right.m_cp0; m_mu0 = right.m_mu0; m_work = right.m_work;