Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 2e4706bd authored by frey_m's avatar frey_m
Browse files

Missing brackets

parent 8366f357
No related branches found
No related tags found
1 merge request!32Master
...@@ -101,7 +101,7 @@ CommMPI::CommMPI(int& argc , char**& argv, int procs, bool mpiinit, MPI_Comm mpi ...@@ -101,7 +101,7 @@ CommMPI::CommMPI(int& argc , char**& argv, int procs, bool mpiinit, MPI_Comm mpi
} }
// initialize mpi // initialize mpi
if (weInitialized) if (weInitialized) {
#ifdef _OPENMP #ifdef _OPENMP
int provided = 0; int provided = 0;
MPI_Init_thread(&argc, &argv, MPI_THREAD_FUNNELED, &provided); MPI_Init_thread(&argc, &argv, MPI_THREAD_FUNNELED, &provided);
...@@ -113,6 +113,7 @@ CommMPI::CommMPI(int& argc , char**& argv, int procs, bool mpiinit, MPI_Comm mpi ...@@ -113,6 +113,7 @@ CommMPI::CommMPI(int& argc , char**& argv, int procs, bool mpiinit, MPI_Comm mpi
#else #else
MPI_Init(&argc, &argv); MPI_Init(&argc, &argv);
#endif #endif
}
//else //else
// INFOMSG("NOT initializing MPI = " << endl); // INFOMSG("NOT initializing MPI = " << endl);
......
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