Skip to content
Snippets Groups Projects
Commit af9e7cc7 authored by laurence's avatar laurence
Browse files

ENH: foamyHexMesh: clean up ostream operator of indexedVertex

parent 7e99cd26
No related branches found
No related tags found
No related merge requests found
...@@ -113,13 +113,12 @@ Foam::Ostream& Foam::operator<< ...@@ -113,13 +113,12 @@ Foam::Ostream& Foam::operator<<
const CGAL::indexedVertex<Gt, Vb>& p const CGAL::indexedVertex<Gt, Vb>& p
) )
{ {
os << p.point() os << p.point() << ' '
<< p.index() << p.index() << ' '
<< static_cast<int>(p.type()) << static_cast<int>(p.type()) << ' '
<< p.procIndex() << p.procIndex() << ' '
<< p.alignment() << p.alignment() << ' '
<< p.targetCellSize() << p.targetCellSize() << ' '
<< token::SPACE
<< static_cast<int>(p.fixed()); << static_cast<int>(p.fixed());
return os; return os;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment