[Kinetics] Remove unused m_finalized member variable

This commit is contained in:
Ray Speth 2016-10-06 18:39:52 -04:00
parent 0b5e209b40
commit 6ca9dc2cc3
3 changed files with 2 additions and 6 deletions

View file

@ -61,8 +61,6 @@ protected:
bool m_ROP_ok;
doublereal m_temp;
bool m_finalized;
};
}

View file

@ -125,9 +125,8 @@ protected:
//! Update the equilibrium constants in molar units.
void updateKc();
bool m_finalized;
};
}
#endif

View file

@ -9,8 +9,7 @@ namespace Cantera
BulkKinetics::BulkKinetics(thermo_t* thermo) :
m_ROP_ok(false),
m_temp(0.0),
m_finalized(false)
m_temp(0.0)
{
if (thermo) {
addPhase(*thermo);