mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: foamyHexMesh: clean up ostream operator of indexedVertex
This commit is contained in:
@ -113,13 +113,12 @@ Foam::Ostream& Foam::operator<<
|
||||
const CGAL::indexedVertex<Gt, Vb>& p
|
||||
)
|
||||
{
|
||||
os << p.point()
|
||||
<< p.index()
|
||||
<< static_cast<int>(p.type())
|
||||
<< p.procIndex()
|
||||
<< p.alignment()
|
||||
<< p.targetCellSize()
|
||||
<< token::SPACE
|
||||
os << p.point() << ' '
|
||||
<< p.index() << ' '
|
||||
<< static_cast<int>(p.type()) << ' '
|
||||
<< p.procIndex() << ' '
|
||||
<< p.alignment() << ' '
|
||||
<< p.targetCellSize() << ' '
|
||||
<< static_cast<int>(p.fixed());
|
||||
|
||||
return os;
|
||||
|
||||
Reference in New Issue
Block a user