mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: extraneous space in template parameter
This commit is contained in:
committed by
Andrew Heather
parent
fd4ffc8a27
commit
c5ed28d0e3
@ -295,16 +295,11 @@ Foam::tmp<Foam::Field<Foam::solveScalar>> Foam::lduMatrix::residual
|
|||||||
|
|
||||||
Foam::tmp<Foam::scalarField> Foam::lduMatrix::H1() const
|
Foam::tmp<Foam::scalarField> Foam::lduMatrix::H1() const
|
||||||
{
|
{
|
||||||
tmp<scalarField > tH1
|
auto tH1 = tmp<scalarField>::New(lduAddr().size(), Zero);
|
||||||
(
|
|
||||||
new scalarField(lduAddr().size(), Zero)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (lowerPtr_ || upperPtr_)
|
if (lowerPtr_ || upperPtr_)
|
||||||
{
|
{
|
||||||
scalarField& H1_ = tH1.ref();
|
scalar* __restrict__ H1Ptr = tH1.ref().begin();
|
||||||
|
|
||||||
scalar* __restrict__ H1Ptr = H1_.begin();
|
|
||||||
|
|
||||||
const label* __restrict__ uPtr = lduAddr().upperAddr().begin();
|
const label* __restrict__ uPtr = lduAddr().upperAddr().begin();
|
||||||
const label* __restrict__ lPtr = lduAddr().lowerAddr().begin();
|
const label* __restrict__ lPtr = lduAddr().lowerAddr().begin();
|
||||||
|
|||||||
Reference in New Issue
Block a user