BUG: SlicedGeometricField, slices into field instead of shallow copy (#3080)

- regression introduced by e98acdc4fc

  Affected versions: (v2206, v2212, v2306, v2312)
This commit is contained in:
Mark Olesen 2024-01-19 17:29:08 +01:00
parent b147078b30
commit e17d8c92d7

View File

@ -176,10 +176,11 @@ makeBoundary
new SlicedPatchField<Type>
(
p,
DimensionedField<Type, GeoMesh>::null(),
bField[patchi]
DimensionedField<Type, GeoMesh>::null()
)
);
bf[patchi].UList<Type>::shallowCopy(bField[patchi]);
}
}