From: bangerth Date: Sat, 24 Jan 2009 04:28:12 +0000 (+0000) Subject: Fix two issues that for whatever reason only on mac osx wouldn't compile. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b966bb2ddc0f81f4198e31fa34b63ca1da650628;p=dealii-svn.git Fix two issues that for whatever reason only on mac osx wouldn't compile. git-svn-id: https://svn.dealii.org/trunk@18297 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/data_out_curved_cells.cc b/tests/bits/data_out_curved_cells.cc index 934247ec25..02002cf56e 100644 --- a/tests/bits/data_out_curved_cells.cc +++ b/tests/bits/data_out_curved_cells.cc @@ -1,4 +1,4 @@ -//---------------------------------------------------------------------- +/---------------------------------------------------------------------- // $Id$ // Version: $Name$ // @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include diff --git a/tests/fe/deformed_projection.h b/tests/fe/deformed_projection.h index e32e880c8f..36dfb8e1b1 100644 --- a/tests/fe/deformed_projection.h +++ b/tests/fe/deformed_projection.h @@ -669,7 +669,7 @@ void plot_shapes (DoFHandler<2> &dof_handler) DataOut<2> *data_out = new DataOut<2>; data_out->attach_dof_handler (dof_handler); data_out->add_data_vector (solution, "solution"); - data_out->build_patches (4, 0); + data_out->build_patches (4); data_out->write_gnuplot (deallog.get_file_stream());