From 5589b8eae567c72df4c0dab1a3c31dd4e2c68fd5 Mon Sep 17 00:00:00 2001
From: Markus Blatt <mblatt@dune-project.org>
Date: Fri, 20 Apr 2007 12:34:59 +0000
Subject: [PATCH] Removed references to MPI_Comm. autobuild errors should be
 resolved now.

[[Imported from SVN: r4913]]
---
 common/test/mpicollectivecommunication.cc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/common/test/mpicollectivecommunication.cc b/common/test/mpicollectivecommunication.cc
index c5a8e6888..9d82bff8a 100644
--- a/common/test/mpicollectivecommunication.cc
+++ b/common/test/mpicollectivecommunication.cc
@@ -9,11 +9,13 @@
 int main(int argc, char** argv)
 {
   typedef Dune::MPIHelper Helper;
+  typedef Helper::MPICommunicator MPIComm;
 
   {
     Helper& mpi = Helper::instance(argc, argv);
 
-    Dune::CollectiveCommunication<MPI_Comm> comm(mpi.getCommunicator());
+
+    Dune::CollectiveCommunication<MPIComm> comm(mpi.getCommunicator());
 
     enum { length = 5 };
     double values[5];
-- 
GitLab