From: Peter Munch Date: Tue, 3 Mar 2020 18:19:21 +0000 (+0100) Subject: Fix type of ConsensusAlgorithmProcessTargets X-Git-Tag: v9.2.0-rc1~469^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bc2398203aba49cec25d85133223cf72c98ed92;p=dealii.git Fix type of ConsensusAlgorithmProcessTargets --- diff --git a/source/base/mpi.cc b/source/base/mpi.cc index 52a214484c..487461cdbe 100644 --- a/source/base/mpi.cc +++ b/source/base/mpi.cc @@ -250,15 +250,15 @@ namespace Utilities * using the ConsensusAlgorithm. */ class ConsensusAlgorithmProcessTargets - : public ConsensusAlgorithmProcess + : public ConsensusAlgorithmProcess { public: ConsensusAlgorithmProcessTargets(const std::vector &target) : target(target) {} - using T1 = int; - using T2 = int; + using T1 = unsigned int; + using T2 = unsigned int; virtual void answer_request(const unsigned int other_rank,