From 48dcc8c1b7b646f9343e9f76dbb4d6bf49f64fcf Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 16 Feb 2007 23:19:27 +0000 Subject: [PATCH] use single character space instead of " " git-svn-id: https://svn.dealii.org/trunk@14489 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/grid/grid_out.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/deal.II/source/grid/grid_out.cc b/deal.II/deal.II/source/grid/grid_out.cc index 6dd51f4bf9..1e7a860492 100644 --- a/deal.II/deal.II/source/grid/grid_out.cc +++ b/deal.II/deal.II/source/grid/grid_out.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -489,7 +489,7 @@ void GridOut::write_ucd (const Triangulation &tria, { out << cell_index << ' ' << static_cast(cell->material_id()) - << " "; + << ' '; switch (dim) { case 1: out << "line "; break; @@ -734,7 +734,7 @@ void GridOut::write_msh_faces (const Triangulation &tria, if (face->at_boundary() && (face->boundary_indicator() != 0)) { - out << index << " "; + out << index << ' '; switch (dim) { case 2: out << 1 << ' '; break; @@ -743,9 +743,9 @@ void GridOut::write_msh_faces (const Triangulation &tria, Assert (false, ExcNotImplemented()); }; out << static_cast(face->boundary_indicator()) - << " " + << ' ' << static_cast(face->boundary_indicator()) - << " " << GeometryInfo::vertices_per_face; + << ' ' << GeometryInfo::vertices_per_face; // note: vertex numbers are 1-base for (unsigned int vertex=0; vertex::vertices_per_face; ++vertex) out << ' ' -- 2.39.5