GIT: fix edit errors

This commit is contained in:
Mark Olesen
2021-02-10 12:42:18 +01:00
parent aa9cd50db9
commit e71bf4445a

View File

@ -87,9 +87,9 @@ void Foam::conformalVoronoiMesh::selectSeparatedCoupledFaces
{
// Check all coupled. Avoid using .coupled() so we also pick up AMI.
const auto* cpp = isA<coupledPolyPatch>(patches[patchi]);
const auto* cpp = isA<coupledPolyPatch>(pp);
if (cpp && (cpp->separated() || !cpp->parallel())
if (cpp && (cpp->separated() || !cpp->parallel()))
{
SubList<bool>(selected, pp.size(), pp.start()) = true;
}