mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: snappyLayerDriver: remove 64-bit label ambiguity
This commit is contained in:
committed by
Andrew Heather
parent
2296d91423
commit
f5ef5dc371
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2015 OpenFOAM Foundation
|
Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2021 OpenCFD Ltd.
|
Copyright (C) 2015-2022 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -5154,7 +5154,7 @@ void Foam::snappyLayerDriver::addLayers
|
|||||||
meshRefinement::updateList
|
meshRefinement::updateList
|
||||||
(
|
(
|
||||||
map.cellMap(),
|
map.cellMap(),
|
||||||
0,
|
label(0),
|
||||||
cellNLayers
|
cellNLayers
|
||||||
);
|
);
|
||||||
forAll(cellNLayers, i)
|
forAll(cellNLayers, i)
|
||||||
@ -5237,7 +5237,7 @@ void Foam::snappyLayerDriver::addLayers
|
|||||||
meshRefinement::updateList
|
meshRefinement::updateList
|
||||||
(
|
(
|
||||||
newToOldPatchPoints,
|
newToOldPatchPoints,
|
||||||
0,
|
label(0),
|
||||||
basePatchNLayers
|
basePatchNLayers
|
||||||
);
|
);
|
||||||
meshRefinement::updateList
|
meshRefinement::updateList
|
||||||
@ -5267,13 +5267,13 @@ void Foam::snappyLayerDriver::addLayers
|
|||||||
meshRefinement::updateList
|
meshRefinement::updateList
|
||||||
(
|
(
|
||||||
newToOldPatchPoints,
|
newToOldPatchPoints,
|
||||||
0,
|
label(0),
|
||||||
deltaNLayers
|
deltaNLayers
|
||||||
);
|
);
|
||||||
meshRefinement::updateList
|
meshRefinement::updateList
|
||||||
(
|
(
|
||||||
newToOldPatchPoints,
|
newToOldPatchPoints,
|
||||||
0,
|
label(0),
|
||||||
nAddedLayers
|
nAddedLayers
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user