From 1e127a102480ff6d21dc4b8c39552ad30027355c Mon Sep 17 00:00:00 2001 From: hartmann Date: Tue, 30 Jan 2007 09:05:07 +0000 Subject: [PATCH] Make it compile in debug. git-svn-id: https://svn.dealii.org/trunk@14395 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 009e5c7486..f932787c1e 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.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 @@ -3022,7 +3022,7 @@ void DataOutBase::write_tecplot_binary (const std::vector > // first patch. checks against all // other patches are made in // write_gmv_reorder_data_vectors - Assert ((patch[0].data.n_rows() == n_data_sets && !patches[0].points_are_available) || + Assert ((patches[0].data.n_rows() == n_data_sets && !patches[0].points_are_available) || (patches[0].data.n_rows() == n_data_sets+spacedim && patches[0].points_are_available), ExcDimensionMismatch (patches[0].points_are_available ? (patches[0].data.n_rows() + spacedim) : patches[0].data.n_rows(), n_data_sets)); -- 2.39.5