remaining nullptr

This commit is contained in:
Hrvoje Jasak 2019-01-25 16:25:13 +00:00
parent f5080b5cdb
commit 01ae864020
2 changed files with 7 additions and 7 deletions

View file

@ -861,7 +861,7 @@ backwardDualDdtScheme<Type>::fvcDdtConsistentPhiCorr
); );
// Dummy return // Dummy return
return tmp<fluxFieldType>(NULL); return tmp<fluxFieldType>(nullptr);
} }

View file

@ -279,7 +279,7 @@ public:
const label, const label,
const label, const label,
const label const label
) const = NULL, ) const = nullptr,
void (Foam::equationReader::*opScalarFieldFunction_) void (Foam::equationReader::*opScalarFieldFunction_)
( (
const equationReader *, const equationReader *,
@ -289,7 +289,7 @@ public:
label&, label&,
scalarField&, scalarField&,
const scalarField& const scalarField&
) const = NULL, ) const = nullptr,
scalar (Foam::equationReader::*getSourceScalarFunction) scalar (Foam::equationReader::*getSourceScalarFunction)
( (
const equationReader *, const equationReader *,
@ -297,7 +297,7 @@ public:
const label, const label,
const label, const label,
const label const label
) const = NULL, ) const = nullptr,
void (Foam::equationReader::*opScalarFunction) void (Foam::equationReader::*opScalarFunction)
( (
const equationReader *, const equationReader *,
@ -307,7 +307,7 @@ public:
label&, label&,
scalar&, scalar&,
scalar scalar
) const = NULL, ) const = nullptr,
dimensionSet (Foam::equationReader::*getSourceDimsFunction) dimensionSet (Foam::equationReader::*getSourceDimsFunction)
( (
const equationReader *, const equationReader *,
@ -315,7 +315,7 @@ public:
const label, const label,
const label, const label,
const label const label
) const = NULL, ) const = nullptr,
void (Foam::equationReader::*opDimsFunction) void (Foam::equationReader::*opDimsFunction)
( (
const equationReader *, const equationReader *,
@ -325,7 +325,7 @@ public:
label&, label&,
dimensionSet&, dimensionSet&,
dimensionSet dimensionSet
) const = NULL ) const = nullptr
); );