mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: hexRef8 - changes to work-aroung clang compiler bug
This commit is contained in:
@ -3185,7 +3185,8 @@ Foam::labelList Foam::hexRef8::consistentSlowRefinement2
|
||||
|
||||
forAll(refineCell, cellI)
|
||||
{
|
||||
if (refineCell.get(cellI))
|
||||
// if (refineCell.get(cellI))
|
||||
if (refineCell[cellI])
|
||||
{
|
||||
nRefined++;
|
||||
}
|
||||
@ -3196,7 +3197,8 @@ Foam::labelList Foam::hexRef8::consistentSlowRefinement2
|
||||
|
||||
forAll(refineCell, cellI)
|
||||
{
|
||||
if (refineCell.get(cellI))
|
||||
// if (refineCell.get(cellI))
|
||||
if (refineCell[cellI])
|
||||
{
|
||||
newCellsToRefine[nRefined++] = cellI;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user