From 4d5934a57b07e9bf2150eaa76744bbe66a3adbaf Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 21 Feb 2015 12:04:21 -0500 Subject: [PATCH] Removed deprecated call to `write_hdf5_parallel`. This function has been superceded by one with the same name that requires an additional parameter. --- tests/mpi/data_out_hdf5_01.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/mpi/data_out_hdf5_01.cc b/tests/mpi/data_out_hdf5_01.cc index 82ec640629..0b424ca1f7 100644 --- a/tests/mpi/data_out_hdf5_01.cc +++ b/tests/mpi/data_out_hdf5_01.cc @@ -49,10 +49,13 @@ test () data_out.add_data_vector (dof1, v1, "linear"); data_out.build_patches (2); - data_out.write_hdf5_parallel ("out.h5", MPI_COMM_WORLD); + DataOutBase::DataOutFilter data_filter + (DataOutBase::DataOutFilterFlags (false, false)); + data_out.write_filtered_data (data_filter); + data_out.write_hdf5_parallel (data_filter, "out.h5", MPI_COMM_WORLD); std::vector xdmf_entries; - xdmf_entries.push_back( - data_out.create_xdmf_entry("out.h5", 0, MPI_COMM_WORLD)); + xdmf_entries.push_back + (data_out.create_xdmf_entry (data_filter, "out.h5", 0, MPI_COMM_WORLD)); data_out.write_xdmf_file(xdmf_entries, "out.xdmf", MPI_COMM_WORLD); -- 2.39.5