Fix statements that called the assignment operator twice
This commit is contained in:
parent
ceeaaecae7
commit
91f3a2b073
21 changed files with 22 additions and 22 deletions
|
|
@ -28,7 +28,7 @@ public:
|
|||
MetalPhase() {}
|
||||
|
||||
MetalPhase(const MetalPhase& right) {
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
MetalPhase& operator=(const MetalPhase& right) {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public:
|
|||
SemiconductorPhase(std::string infile, std::string id="");
|
||||
|
||||
SemiconductorPhase(const SemiconductorPhase& right) {
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
SemiconductorPhase& operator=(const SemiconductorPhase& right) {
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ public:
|
|||
/*
|
||||
* Call the assignment operator
|
||||
*/
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
//! Assignment operator
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ public:
|
|||
* @param right Object to be copied
|
||||
*/
|
||||
SpeciesThermoDuo(const SpeciesThermoDuo& right) {
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
//! Assignment operator
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ ResidJacEval::ResidJacEval(doublereal atol) :
|
|||
ResidJacEval::ResidJacEval(const ResidJacEval& right) :
|
||||
ResidEval()
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
ResidJacEval& ResidJacEval::operator=(const ResidJacEval& right)
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ ConstDensityThermo::ConstDensityThermo()
|
|||
|
||||
ConstDensityThermo::ConstDensityThermo(const ConstDensityThermo& right)
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
ConstDensityThermo& ConstDensityThermo::operator=(const ConstDensityThermo& right)
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ Elements::Elements(const Elements& right) :
|
|||
m_elementsFrozen(false),
|
||||
numSubscribers(0)
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
Elements& Elements::operator=(const Elements& right)
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ FixedChemPotSSTP::FixedChemPotSSTP(const std::string& Ename, doublereal val) :
|
|||
FixedChemPotSSTP::FixedChemPotSSTP(const FixedChemPotSSTP& right) :
|
||||
SingleSpeciesTP()
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
FixedChemPotSSTP&
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ LatticePhase::LatticePhase(const LatticePhase& right) :
|
|||
m_speciesMolarVolume(0),
|
||||
m_site_density(0.0)
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
LatticePhase& LatticePhase::operator=(const LatticePhase& right)
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ LatticeSolidPhase::LatticeSolidPhase(const LatticeSolidPhase& right) :
|
|||
theta_(0),
|
||||
tmpV_(0)
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
LatticeSolidPhase&
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ MineralEQ3::MineralEQ3(XML_Node& xmlphase, const std::string& id_) :
|
|||
MineralEQ3::MineralEQ3(const MineralEQ3& right) :
|
||||
StoichSubstanceSSTP()
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
MineralEQ3&
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ MolalityVPSSTP::MolalityVPSSTP(const MolalityVPSSTP& b) :
|
|||
m_Mnaught(b.m_Mnaught),
|
||||
m_molalities(b.m_molalities)
|
||||
{
|
||||
*this = operator=(b);
|
||||
*this = b;
|
||||
}
|
||||
|
||||
MolalityVPSSTP& MolalityVPSSTP::operator=(const MolalityVPSSTP& b)
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ MolarityIonicVPSSTP::MolarityIonicVPSSTP(const MolarityIonicVPSSTP& b) :
|
|||
numPassThroughSpecies_(0),
|
||||
neutralPBindexStart(0)
|
||||
{
|
||||
*this = operator=(b);
|
||||
*this = b;
|
||||
}
|
||||
|
||||
MolarityIonicVPSSTP& MolarityIonicVPSSTP::operator=(const MolarityIonicVPSSTP& b)
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ NasaThermo::NasaThermo(const NasaThermo& right) :
|
|||
m_thigh_min(1.e30),
|
||||
m_p0(-1.0),
|
||||
m_ngroups(0) {
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
NasaThermo& NasaThermo::operator=(const NasaThermo& right)
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ PseudoBinaryVPSSTP::PseudoBinaryVPSSTP(const PseudoBinaryVPSSTP& b) :
|
|||
cationPhase_(0),
|
||||
anionPhase_(0)
|
||||
{
|
||||
*this = operator=(b);
|
||||
*this = b;
|
||||
}
|
||||
|
||||
PseudoBinaryVPSSTP& PseudoBinaryVPSSTP::operator=(const PseudoBinaryVPSSTP& b)
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ public:
|
|||
m_thigh_min(1.e30),
|
||||
m_p0(-1.0),
|
||||
m_ngroups(0) {
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
//! Assignment Operator
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ SingleSpeciesTP::SingleSpeciesTP(const SingleSpeciesTP& right):
|
|||
m_press(OneAtm),
|
||||
m_p0(OneAtm)
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
SingleSpeciesTP& SingleSpeciesTP::operator=(const SingleSpeciesTP& right)
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ StoichSubstance::StoichSubstance(const StoichSubstance& right) :
|
|||
m_press(OneAtm),
|
||||
m_p0(OneAtm)
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
StoichSubstance& StoichSubstance::operator=(const StoichSubstance& right)
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ StoichSubstanceSSTP::StoichSubstanceSSTP(XML_Node& xmlphase, const std::string&
|
|||
StoichSubstanceSSTP::StoichSubstanceSSTP(const StoichSubstanceSSTP& right) :
|
||||
SingleSpeciesTP()
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
StoichSubstanceSSTP&
|
||||
|
|
@ -324,7 +324,7 @@ electrodeElectron::electrodeElectron(XML_Node& xmlphase, const std::string& id_)
|
|||
electrodeElectron::electrodeElectron(const electrodeElectron& right) :
|
||||
StoichSubstanceSSTP()
|
||||
{
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
electrodeElectron&
|
||||
|
|
|
|||
|
|
@ -415,7 +415,7 @@ EdgePhase::EdgePhase(const EdgePhase& right) :
|
|||
SurfPhase(right.m_n0)
|
||||
{
|
||||
setNDim(1);
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
EdgePhase& EdgePhase::operator=(const EdgePhase& right)
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ ThermoPhase::ThermoPhase(const ThermoPhase& right) :
|
|||
/*
|
||||
* Call the assignment operator
|
||||
*/
|
||||
*this = operator=(right);
|
||||
*this = right;
|
||||
}
|
||||
|
||||
ThermoPhase& ThermoPhase::operator=(const ThermoPhase& right)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue