From a480f9577cae53f43823552e413c7501c1418c1f Mon Sep 17 00:00:00 2001 From: Danial Khazaei Date: Thu, 31 Jan 2019 17:16:18 +0330 Subject: [PATCH] Bugfix: type qualifiers ignored on cast result type --- src/coupledMatrix/coupledLduMatrix/coupledLduMatrix.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/coupledMatrix/coupledLduMatrix/coupledLduMatrix.C b/src/coupledMatrix/coupledLduMatrix/coupledLduMatrix.C index 6041c539d..67f0f7fa9 100644 --- a/src/coupledMatrix/coupledLduMatrix/coupledLduMatrix.C +++ b/src/coupledMatrix/coupledLduMatrix/coupledLduMatrix.C @@ -241,7 +241,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces matrices[rowI], coupleCoeffs[rowI][interfaceI], cmpt, - static_cast + static_cast ( Pstream::defaultCommsType() ), @@ -288,7 +288,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces matrices[rowI], coupleCoeffs[rowI][interfaceI], cmpt, - static_cast + static_cast ( Pstream::defaultCommsType() ), @@ -336,7 +336,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces matrices[rowI], coupleCoeffs[rowI][interfaceI], cmpt, - static_cast + static_cast ( Pstream::defaultCommsType() ), @@ -383,7 +383,7 @@ void Foam::coupledLduMatrix::initMatrixInterfaces matrices[rowI], coupleCoeffs[rowI][interfaceI], cmpt, - static_cast + static_cast ( Pstream::defaultCommsType() ),