Skip to content
Snippets Groups Projects
Commit c66f7aee authored by Martin Nolte's avatar Martin Nolte
Browse files

get rid of warning about unused variable

[[Imported from SVN: r5930]]
parent 537945b7
No related branches found
No related tags found
No related merge requests found
......@@ -209,7 +209,8 @@ namespace Dune
{
rank_ = -1;
size_ = -1;
static int is_initialized = MPI_Init(&argc, &argv);
//static int is_initialized = MPI_Init(&argc, &argv);
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD,&rank_);
MPI_Comm_size(MPI_COMM_WORLD,&size_);
......
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