clean up whitespaces

remove extra spaces, convert tabs to spaces
This commit is contained in:
danielque
2018-07-05 16:25:40 +02:00
parent b5b04c0fb0
commit 1a8b4aa5c2
18 changed files with 67 additions and 67 deletions

View File

@ -46,7 +46,7 @@ tmp<volScalarField> chemistryModel::Smi(label i) const
tmp<volScalarField> chemistryModel::Sm() const tmp<volScalarField> chemistryModel::Sm() const
{ {
FatalError<<"the solver calls for Smi()\n" FatalError<<"the solver calls for Sm()\n"
<<"please activate 'speciesModel' in 'chemistryModels'" <<"please activate 'speciesModel' in 'chemistryModels'"
<<abort(FatalError); <<abort(FatalError);

View File

@ -96,9 +96,9 @@ public:
virtual void execute() = 0; virtual void execute() = 0;
virtual tmp<volScalarField> Smi (const label i) const; virtual tmp<volScalarField> Smi(const label i) const;
virtual tmp<volScalarField> Sm () const; virtual tmp<volScalarField> Sm() const;
}; };