summaryrefslogtreecommitdiff
path: root/boost/mpi/collectives.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/mpi/collectives.hpp')
-rw-r--r--boost/mpi/collectives.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/mpi/collectives.hpp b/boost/mpi/collectives.hpp
index e74fd72bb0..6e0cbdd0e9 100644
--- a/boost/mpi/collectives.hpp
+++ b/boost/mpi/collectives.hpp
@@ -235,10 +235,6 @@ all_to_all(const communicator& comm, const T* in_values, int n, T* out_values);
* non-roots will reshape the objects held in their proxies based on
* the skeleton sent from the root.
*
- * @param n When supplied, the number of values that the pointer @p
- * values points to, for broadcasting an array of values. The value
- * of @p n must be the same for all processes in @p comm.
- *
* @param root The rank/process ID of the process that will be
* transmitting the value.
*/
@@ -247,6 +243,10 @@ void broadcast(const communicator& comm, T& value, int root);
/**
* \overload
+ * @param n When supplied, the number of values that the pointer @p
+ * values points to, for broadcasting an array of values. The value
+ * of @p n must be the same for all processes in @p comm.
+ *
*/
template<typename T>
void broadcast(const communicator& comm, T* values, int n, int root);