[Thermo] Add missing variable to GeneralSpeciesThermo copy constructor

(and assignment operator)
This commit is contained in:
Ray Speth 2015-02-20 00:11:37 +00:00
parent b4492cb8a3
commit 999a6e4615

View file

@ -21,6 +21,7 @@ GeneralSpeciesThermo::GeneralSpeciesThermo() :
GeneralSpeciesThermo::GeneralSpeciesThermo(const GeneralSpeciesThermo& b) :
SpeciesThermo(b),
m_tpoly(b.m_tpoly),
m_speciesLoc(b.m_speciesLoc),
m_tlow_max(b.m_tlow_max),
m_thigh_min(b.m_thigh_min),
m_p0(b.m_p0)
@ -57,6 +58,7 @@ GeneralSpeciesThermo::operator=(const GeneralSpeciesThermo& b)
}
m_tpoly = b.m_tpoly;
m_speciesLoc = b.m_speciesLoc;
m_tlow_max = b.m_tlow_max;
m_thigh_min = b.m_thigh_min;
m_p0 = b.m_p0;