ENH: foamyHexMesh: clean up ostream operator of indexedVertex

This commit is contained in:
laurence
2013-06-04 14:40:45 +01:00
parent 7e99cd26c1
commit af9e7cc72c

View File

@ -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;