mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
replacing isType with isA to enable directMappedWall to work
This commit is contained in:
@ -108,11 +108,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
const polyPatch& patch = bMesh[patchI];
|
||||
|
||||
if
|
||||
(
|
||||
includeProcPatches
|
||||
|| (patch.type() != processorPolyPatch::typeName)
|
||||
)
|
||||
if (includeProcPatches || !isA<processorPolyPatch>(patch))
|
||||
{
|
||||
includePatches.insert(patchI);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user