From af9e7cc72c7c8b61a9bef0ba1e5f72073b7edfae Mon Sep 17 00:00:00 2001 From: laurence Date: Tue, 4 Jun 2013 14:40:45 +0100 Subject: [PATCH] ENH: foamyHexMesh: clean up ostream operator of indexedVertex --- .../indexedVertex/indexedVertex.C | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/conformalVoronoiMesh/indexedVertex/indexedVertex.C b/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/conformalVoronoiMesh/indexedVertex/indexedVertex.C index 36c84fd19a..7be77f96cf 100644 --- a/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/conformalVoronoiMesh/indexedVertex/indexedVertex.C +++ b/applications/utilities/mesh/generation/foamyHexMesh/conformalVoronoiMesh/conformalVoronoiMesh/indexedVertex/indexedVertex.C @@ -113,13 +113,12 @@ Foam::Ostream& Foam::operator<< const CGAL::indexedVertex& p ) { - os << p.point() - << p.index() - << static_cast(p.type()) - << p.procIndex() - << p.alignment() - << p.targetCellSize() - << token::SPACE + os << p.point() << ' ' + << p.index() << ' ' + << static_cast(p.type()) << ' ' + << p.procIndex() << ' ' + << p.alignment() << ' ' + << p.targetCellSize() << ' ' << static_cast(p.fixed()); return os;