From: bangerth Date: Mon, 7 Jun 2010 20:49:51 +0000 (+0000) Subject: Make test compile. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7429edce0f7c1f9bbe60102ebff7a33b95ac9a60;p=dealii-svn.git Make test compile. git-svn-id: https://svn.dealii.org/trunk@21163 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/data_out_base_tecplot_bin.cc b/tests/base/data_out_base_tecplot_bin.cc index 6ae05e3c70..cb96440f78 100644 --- a/tests/base/data_out_base_tecplot_bin.cc +++ b/tests/base/data_out_base_tecplot_bin.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2006 by the deal.II authors +// Copyright (C) 2006, 2010 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -46,7 +46,8 @@ void check(DataOutBase::TecplotFlags flags, names[2] = "x3"; names[3] = "x4"; names[4] = "i"; - DataOutBase::write_tecplot_binary(patches, names, flags, out); + std::vector > vectors; + DataOutBase::write_tecplot_binary(patches, names, vectors, flags, out); }