From b0de14ce79b2c6e63aeb28ad657ed45e939101fc Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 26 May 1998 12:05:25 +0000 Subject: [PATCH] Disallow writing of a preamble to ucd files since DealVision presently can't handle it. git-svn-id: https://svn.dealii.org/trunk@366 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/numerics/data_io.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/numerics/data_io.cc b/deal.II/deal.II/source/numerics/data_io.cc index 892af90a84..44eb3a8700 100644 --- a/deal.II/deal.II/source/numerics/data_io.cc +++ b/deal.II/deal.II/source/numerics/data_io.cc @@ -259,8 +259,9 @@ void DataOut::write_ucd (ostream &out) const { // write preamble - if (true) + if (true) { +/* // block this to have local // variables destroyed after // use @@ -279,6 +280,7 @@ void DataOut::write_ucd (ostream &out) const { << "# For a description of the UCD format see the AVS Developer's guide." << endl << "#" << endl; +*/ }; // start with ucd data -- 2.39.5