Skip to content
Snippets Groups Projects
Commit 0177b762 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

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

- regression introduced by e98acdc4

  Affected versions: (v2206, v2212, v2306, v2312)
parent 308615e6
Branches
No related merge requests found
......@@ -152,10 +152,11 @@ slicedBoundaryField
new SlicedPatchField<Type>
(
mesh.boundary()[patchi],
DimensionedField<Type, GeoMesh>::null(),
bField[patchi]
DimensionedField<Type, GeoMesh>::null()
)
);
bf[patchi].UList<Type>::shallowCopy(bField[patchi]);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment