[Thermo] Remove unused variable MolarityIonicVPSSTP::indexSpecialSpecies_

This commit is contained in:
Ray Speth 2017-08-01 00:00:24 -04:00
parent 4856d1328b
commit c85ba586d2
2 changed files with 0 additions and 6 deletions

View file

@ -237,9 +237,6 @@ protected:
//! Number of pseudo binary species
size_t numPBSpecies_;
//! index of special species
size_t indexSpecialSpecies_;
mutable vector_fp PBMoleFractions_;
//! Vector of cation indices in the mixture

View file

@ -28,7 +28,6 @@ namespace Cantera
MolarityIonicVPSSTP::MolarityIonicVPSSTP() :
PBType_(PBTYPE_PASSTHROUGH),
numPBSpecies_(m_kk),
indexSpecialSpecies_(npos),
neutralPBindexStart(0)
{
}
@ -37,7 +36,6 @@ MolarityIonicVPSSTP::MolarityIonicVPSSTP(const std::string& inputFile,
const std::string& id_) :
PBType_(PBTYPE_PASSTHROUGH),
numPBSpecies_(m_kk),
indexSpecialSpecies_(npos),
neutralPBindexStart(0)
{
initThermoFile(inputFile, id_);
@ -47,7 +45,6 @@ MolarityIonicVPSSTP::MolarityIonicVPSSTP(XML_Node& phaseRoot,
const std::string& id_) :
PBType_(PBTYPE_PASSTHROUGH),
numPBSpecies_(m_kk),
indexSpecialSpecies_(npos),
neutralPBindexStart(0)
{
importPhase(phaseRoot, this);