Skip to content
Snippets Groups Projects
Commit 69215358 authored by Andrew Heather's avatar Andrew Heather
Browse files

STYLE: Minor code style corrections

parent 2f0692e0
Branches
Tags
No related merge requests found
...@@ -77,7 +77,6 @@ public: ...@@ -77,7 +77,6 @@ public:
primitiveEntry& entry, primitiveEntry& entry,
Istream& is Istream& is
); );
}; };
......
...@@ -703,6 +703,7 @@ void Foam::globalMeshData::calcPointBoundaryFaces ...@@ -703,6 +703,7 @@ void Foam::globalMeshData::calcPointBoundaryFaces
} }
} }
void Foam::globalMeshData::calcGlobalPointBoundaryFaces() const void Foam::globalMeshData::calcGlobalPointBoundaryFaces() const
{ {
if (debug) if (debug)
...@@ -1743,12 +1744,12 @@ Foam::autoPtr<Foam::globalIndex> Foam::globalMeshData::mergePoints ...@@ -1743,12 +1744,12 @@ Foam::autoPtr<Foam::globalIndex> Foam::globalMeshData::mergePoints
label myUniquePoints = meshPoints.size() + nCoupledMaster - nCoupledSlave; label myUniquePoints = meshPoints.size() + nCoupledMaster - nCoupledSlave;
Pout<< "Points :" << nl Pout<< "Points :" << nl
<< " patch : " << meshPoints.size() << nl << " patch : " << meshPoints.size() << nl
<< " of which coupled : " << nCoupledMaster+nCoupledSlave << nl << " of which coupled : " << nCoupledMaster+nCoupledSlave << nl
<< " of which master : " << nCoupledMaster << nl << " of which master : " << nCoupledMaster << nl
<< " of which slave : " << nCoupledSlave << nl << " of which slave : " << nCoupledSlave << nl
<< endl; << endl;
// 2. Create global indexing for unique points. // 2. Create global indexing for unique points.
......
...@@ -64,8 +64,6 @@ public: ...@@ -64,8 +64,6 @@ public:
//- Construct null //- Construct null
NASCore(); NASCore();
}; };
......
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