From b966bb2ddc0f81f4198e31fa34b63ca1da650628 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 24 Jan 2009 04:28:12 +0000 Subject: [PATCH] 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 --- tests/bits/data_out_curved_cells.cc | 3 ++- tests/fe/deformed_projection.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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()); -- 2.39.5