Remove spaces adjacent to '::' in member function definitions
This commit is contained in:
parent
95eb7ab3ba
commit
de8a19ed0f
3 changed files with 6 additions and 6 deletions
|
|
@ -210,7 +210,7 @@ bool PrintCtrl::doCrop() const
|
|||
return retn;
|
||||
}
|
||||
|
||||
void PrintCtrl:: setCropCntrl(CROP_TYPE ctlocal)
|
||||
void PrintCtrl::setCropCntrl(CROP_TYPE ctlocal)
|
||||
{
|
||||
m_cropCntrl = ctlocal;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ static const doublereal M_water = 18.015268;
|
|||
static const doublereal Rgas = 8.314371E3; // Joules kmol-1 K-1
|
||||
|
||||
// Base constructor
|
||||
WaterPropsIAPWS:: WaterPropsIAPWS() :
|
||||
WaterPropsIAPWS::WaterPropsIAPWS() :
|
||||
m_phi(0),
|
||||
tau(-1.0),
|
||||
delta(-1.0),
|
||||
|
|
@ -288,12 +288,12 @@ doublereal WaterPropsIAPWS::dpdrho() const
|
|||
return retn * Rgas * temperature / M_water;
|
||||
}
|
||||
|
||||
doublereal WaterPropsIAPWS:: coeffPresExp() const
|
||||
doublereal WaterPropsIAPWS::coeffPresExp() const
|
||||
{
|
||||
return m_phi->dimdpdT(tau, delta);
|
||||
}
|
||||
|
||||
doublereal WaterPropsIAPWS:: coeffThermExp() const
|
||||
doublereal WaterPropsIAPWS::coeffThermExp() const
|
||||
{
|
||||
doublereal kappa = isothermalCompressibility();
|
||||
doublereal beta = coeffPresExp();
|
||||
|
|
|
|||
|
|
@ -422,7 +422,7 @@ void LiquidTransport::getSpeciesViscosities(doublereal* const visc)
|
|||
copy(m_viscSpecies.begin(), m_viscSpecies.end(), visc);
|
||||
}
|
||||
|
||||
doublereal LiquidTransport:: ionConductivity()
|
||||
doublereal LiquidTransport::ionConductivity()
|
||||
{
|
||||
update_T();
|
||||
update_C();
|
||||
|
|
@ -457,7 +457,7 @@ void LiquidTransport::getSpeciesIonConductivity(doublereal* ionCond)
|
|||
copy(m_ionCondSpecies.begin(), m_ionCondSpecies.end(), ionCond);
|
||||
}
|
||||
|
||||
void LiquidTransport:: mobilityRatio(doublereal* mobRat)
|
||||
void LiquidTransport::mobilityRatio(doublereal* mobRat)
|
||||
{
|
||||
|
||||
update_T();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue