COMP: snappyLayerDriver: remove 64-bit label ambiguity

This commit is contained in:
Kutalmis Bercin
2022-03-31 09:32:32 +01:00
committed by Andrew Heather
parent 2296d91423
commit f5ef5dc371

View File

@ -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
); );
} }