From: Jan Philipp Thiele Date: Fri, 6 Sep 2019 17:53:05 +0000 (+0200) Subject: HDF5 Namespace documentation errors fixed X-Git-Tag: v9.2.0-rc1~1134^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b511df1532d2483f19cc5d0d85b84497b559a6c;p=dealii.git HDF5 Namespace documentation errors fixed Some parts of the code provided in the Data exchange with python scripts section where not matching the namespace definitions. --- diff --git a/include/deal.II/base/hdf5.h b/include/deal.II/base/hdf5.h index f33622f2a7..75a2965706 100644 --- a/include/deal.II/base/hdf5.h +++ b/include/deal.II/base/hdf5.h @@ -291,10 +291,10 @@ DEAL_II_NAMESPACE_OPEN * * C++ deal.II simulation with MPI HDF5: * @code - * hdf5::File data_file("simulation.hdf5", - * MPI_COMM_WORLD, - * HDF5::FileAccessMode::Mode::open); - * hdf5::Group data = data_file.open_group("data"); + * HDF5::File data_file("simulation.hdf5", + * HDF5::File::FileAccessMode::open, + * MPI_COMM_WORLD); + * HDF5::Group data = data_file.open_group("data"); * * auto nb_frequency_points = data.get_attribute("nb_frequency_points"); * auto rho = data.get_attribute("rho");