Skip to content
Snippets Groups Projects
Commit 5589b8ea authored by Markus Blatt's avatar Markus Blatt
Browse files

Removed references to MPI_Comm.

autobuild errors should be resolved now.

[[Imported from SVN: r4913]]
parent 9ed7796a
No related branches found
No related tags found
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment