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
return tmp<fluxFieldType>(NULL);
return tmp<fluxFieldType>(nullptr);
}

View file

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