2
0
mirror of https://github.com/boostorg/mpi.git synced 2026-02-25 04:22:17 +00:00

Remove unused parameter warning from scan.hpp

by nasailja
This commit is contained in:
Alain Miniussi
2015-09-21 23:46:02 +02:00
parent ceafbbfe2d
commit 1bd679217c

View File

@@ -47,7 +47,7 @@ namespace detail {
template<typename T, typename Op>
void
scan_impl(const communicator& comm, const T* in_values, int n, T* out_values,
Op op, mpl::true_ /*is_mpi_op*/, mpl::true_ /*is_mpi_datatype*/)
Op /*op*/, mpl::true_ /*is_mpi_op*/, mpl::true_ /*is_mpi_datatype*/)
{
BOOST_MPI_CHECK_RESULT(MPI_Scan,
(const_cast<T*>(in_values), out_values, n,