Added return NULL to silence compiler.

This commit is contained in:
Thomas Lichtenegger
2018-05-22 15:23:35 +02:00
parent c1cb77f08c
commit 0d7916746a

View File

@ -181,6 +181,7 @@ tmp<volScalarField> ZehnerSchluenderThermCond::thermCond() const
tmp<volScalarField> ZehnerSchluenderThermCond::thermDiff() const tmp<volScalarField> ZehnerSchluenderThermCond::thermDiff() const
{ {
FatalError << "ZehnerSchluenderThermCond does not provide thermal diffusivity." << abort(FatalError); FatalError << "ZehnerSchluenderThermCond does not provide thermal diffusivity." << abort(FatalError);
return tmp<volScalarField>(NULL);
} }
void ZehnerSchluenderThermCond::calcPartKsField() const void ZehnerSchluenderThermCond::calcPartKsField() const