remaining nullptr
This commit is contained in:
parent
f5080b5cdb
commit
01ae864020
2 changed files with 7 additions and 7 deletions
|
@ -861,7 +861,7 @@ backwardDualDdtScheme<Type>::fvcDdtConsistentPhiCorr
|
|||
);
|
||||
|
||||
// Dummy return
|
||||
return tmp<fluxFieldType>(NULL);
|
||||
return tmp<fluxFieldType>(nullptr);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
);
|
||||
|
||||
|
||||
|
|
Reference in a new issue