From 5c0adf7bf2248d1de1fc60c7c2ae57a6fa1b3aab Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 16 Feb 2017 23:51:33 +0000 Subject: [PATCH] Make clang happy with parenthesis --- lib/communicator/Communicator_mpi3.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/communicator/Communicator_mpi3.cc b/lib/communicator/Communicator_mpi3.cc index b86d5259..23626c5b 100644 --- a/lib/communicator/Communicator_mpi3.cc +++ b/lib/communicator/Communicator_mpi3.cc @@ -100,7 +100,7 @@ void CartesianCommunicator::Init(int *argc, char ***argv) { int flag; int provided; - mtrace(); + // mtrace(); MPI_Initialized(&flag); // needed to coexist with other libs apparently if ( !flag ) { @@ -511,7 +511,7 @@ void CartesianCommunicator::SendToRecvFromBegin(std::vector &lis int myrank = _processor; int ierr; - if ( (CommunicatorPolicy == CommunicatorPolicyIsend) ) { + if ( CommunicatorPolicy == CommunicatorPolicyIsend ) { MPI_Request xrq; MPI_Request rrq;