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

Silence unused-variable warnings. Fixes #2202

[SVN r48608]
This commit is contained in:
Douglas Gregor
2008-09-05 13:29:32 +00:00
parent b2f18f30e0
commit b1fb492120
3 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -100,7 +100,7 @@ public:
// Load it directly using the primnivites
template<class T>
void load_override(T& x, int version, mpl::true_)
void load_override(T& x, int /*version*/, mpl::true_)
{
iprimitive::load(x);
}

View File

@@ -90,7 +90,7 @@ public:
// Save it directly using the primnivites
template<class T>
void save_override(T const& x, int version, mpl::true_)
void save_override(T const& x, int /*version*/, mpl::true_)
{
oprimitive::save(x);
}