From 576a2afa9322be4f8a7e05464684955116f986a9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 23 Nov 2017 07:08:39 -0700 Subject: [PATCH] Minor doc updates. --- include/deal.II/base/mpi.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 -- 2.39.5