From: Wolfgang Bangerth Date: Thu, 23 Nov 2017 14:08:39 +0000 (-0700) Subject: Minor doc updates. X-Git-Tag: v9.0.0-rc1~737^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=576a2afa9322be4f8a7e05464684955116f986a9;p=dealii.git Minor doc updates. --- diff --git a/include/deal.II/base/mpi.h b/include/deal.II/base/mpi.h index 6f64cb050d..2790c9e8b0 100644 --- a/include/deal.II/base/mpi.h +++ b/include/deal.II/base/mpi.h @@ -501,12 +501,12 @@ namespace Utilities * process meant to receive the data and the object to send (the type T * must be serializable for this function to work properly). * - * @param[out] A map from the rank (unsigned int) of the process + * @return A map from the rank (unsigned int) of the process * which sent the data and object received. * * @author Giovanni Alzetta, Luca Heltai, 2017 */ - template + template std::map some_to_some(const MPI_Comm &comm, const std::map &objects_to_send); @@ -517,20 +517,21 @@ namespace Utilities * argument. * * @param[in] comm MPI communicator. - * @param[in] object_to_send A object to send to all other processes + * @param[in] object_to_send An object to send to all other processes * - * @param[out] A vector of objects, with size equal to the number of + * @return A vector of objects, with size equal to the number of * processes in the MPI communicator. Each entry contains the object * received from the processor with the corresponding rank within the * communicator. * * @author Giovanni Alzetta, Luca Heltai, 2017 */ - template + template std::vector all_gather(const MPI_Comm &comm, const T &object_to_send); + #ifndef DOXYGEN // declaration for an internal function that lives in mpi.templates.h namespace internal