Bugfix: type qualifiers ignored on cast result type
This commit is contained in:
parent
23ef4e1dc3
commit
a480f9577c
1 changed files with 4 additions and 4 deletions
|
@ -241,7 +241,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces
|
||||||
matrices[rowI],
|
matrices[rowI],
|
||||||
coupleCoeffs[rowI][interfaceI],
|
coupleCoeffs[rowI][interfaceI],
|
||||||
cmpt,
|
cmpt,
|
||||||
static_cast<const Pstream::commsTypes>
|
static_cast<Pstream::commsTypes>
|
||||||
(
|
(
|
||||||
Pstream::defaultCommsType()
|
Pstream::defaultCommsType()
|
||||||
),
|
),
|
||||||
|
@ -288,7 +288,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces
|
||||||
matrices[rowI],
|
matrices[rowI],
|
||||||
coupleCoeffs[rowI][interfaceI],
|
coupleCoeffs[rowI][interfaceI],
|
||||||
cmpt,
|
cmpt,
|
||||||
static_cast<const Pstream::commsTypes>
|
static_cast<Pstream::commsTypes>
|
||||||
(
|
(
|
||||||
Pstream::defaultCommsType()
|
Pstream::defaultCommsType()
|
||||||
),
|
),
|
||||||
|
@ -336,7 +336,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces
|
||||||
matrices[rowI],
|
matrices[rowI],
|
||||||
coupleCoeffs[rowI][interfaceI],
|
coupleCoeffs[rowI][interfaceI],
|
||||||
cmpt,
|
cmpt,
|
||||||
static_cast<const Pstream::commsTypes>
|
static_cast<Pstream::commsTypes>
|
||||||
(
|
(
|
||||||
Pstream::defaultCommsType()
|
Pstream::defaultCommsType()
|
||||||
),
|
),
|
||||||
|
@ -383,7 +383,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces
|
||||||
matrices[rowI],
|
matrices[rowI],
|
||||||
coupleCoeffs[rowI][interfaceI],
|
coupleCoeffs[rowI][interfaceI],
|
||||||
cmpt,
|
cmpt,
|
||||||
static_cast<const Pstream::commsTypes>
|
static_cast<Pstream::commsTypes>
|
||||||
(
|
(
|
||||||
Pstream::defaultCommsType()
|
Pstream::defaultCommsType()
|
||||||
),
|
),
|
||||||
|
|
Reference in a new issue