From: David Wells Date: Sat, 21 Feb 2015 17:04:21 +0000 (-0500) Subject: Removed deprecated call to `write_hdf5_parallel`. X-Git-Tag: v8.3.0-rc1~435^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d5934a57b07e9bf2150eaa76744bbe66a3adbaf;p=dealii.git Removed deprecated call to `write_hdf5_parallel`. This function has been superceded by one with the same name that requires an additional parameter. --- 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);