From 19b8982663dd453385c7580234511b4dc8b083b4 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 16 Dec 2008 23:51:01 +0000 Subject: [PATCH] Use a single space character rather than a string with a single space. git-svn-id: https://svn.dealii.org/trunk@17958 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/data_out_base.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/base/source/data_out_base.cc b/deal.II/base/source/data_out_base.cc index f2fff9e6f2..023ebd30be 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.cc @@ -4698,11 +4698,11 @@ operator << (std::ostream &out, // then write all the data that is // in this patch for (unsigned int i=0; i::vertices_per_cell; ++i) - out << patch.vertices[GeometryInfo::ucd_to_deal[i]] << " "; + out << patch.vertices[GeometryInfo::ucd_to_deal[i]] << ' '; out << '\n'; for (unsigned int i=0; i::faces_per_cell; ++i) - out << patch.neighbors[i] << " "; + out << patch.neighbors[i] << ' '; out << '\n'; out << patch.patch_index << ' ' << patch.n_subdivisions -- 2.39.5