From 58c39f4d317b1cc716fb5705dc5c6cccc479ffb5 Mon Sep 17 00:00:00 2001 From: Ilja <2098356+iljah@users.noreply.github.com> Date: Thu, 15 Jan 2026 11:10:41 +0000 Subject: [PATCH] Remove unused variable --- include/boost/mpi/detail/request_handlers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpi/detail/request_handlers.hpp b/include/boost/mpi/detail/request_handlers.hpp index 8283918b..c8a737de 100644 --- a/include/boost/mpi/detail/request_handlers.hpp +++ b/include/boost/mpi/detail/request_handlers.hpp @@ -217,7 +217,7 @@ struct serialized_data { template<> struct serialized_data { - serialized_data(communicator const& comm, packed_iarchive& ar) : m_archive(ar) {} + serialized_data(communicator const&, packed_iarchive& ar) : m_archive(ar) {} void* buffer() { return m_archive.address(); } void resize(std::size_t sz) { m_archive.resize(sz); }