mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: various compilation changes
- label-size 64 build, compiler warnings, unused template argument, faMatrix::clone() method STYLE: faScalarMatrix - moved info message to within a debug scope
This commit is contained in:
committed by
Andrew Heather
parent
9ac1fa417b
commit
a14eb71160
@ -551,7 +551,7 @@ void faMeshDecomposition::decomposeMesh()
|
||||
|
||||
const label patchStart = patches[patchI].start();
|
||||
|
||||
// if (typeid(patches[patchI]) != typeid(cyclicFaPatch))
|
||||
// if (!isA<cyclicFaPatch>(patches[patchI]))
|
||||
if (true)
|
||||
{
|
||||
// Normal patch. Add edges to processor where the face
|
||||
|
||||
@ -253,7 +253,7 @@ Foam::faFieldReconstructor::reconstructFaAreaField
|
||||
// add empty patches
|
||||
if
|
||||
(
|
||||
typeid(mesh_.boundary()[patchI]) == typeid(emptyFaPatch)
|
||||
isA<emptyFaPatch>(mesh_.boundary()[patchI])
|
||||
&& !patchFields(patchI)
|
||||
)
|
||||
{
|
||||
@ -533,7 +533,7 @@ Foam::faFieldReconstructor::reconstructFaEdgeField
|
||||
// add empty patches
|
||||
if
|
||||
(
|
||||
typeid(mesh_.boundary()[patchI]) == typeid(emptyFaPatch)
|
||||
isA<emptyFaPatch>(mesh_.boundary()[patchI])
|
||||
&& !patchFields(patchI)
|
||||
)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user