[Thermo] Add missing variable to GeneralSpeciesThermo copy constructor
(and assignment operator)
This commit is contained in:
parent
b4492cb8a3
commit
999a6e4615
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue