Skip to content
Snippets Groups Projects
Commit 0406910f authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[mpihelpertest] Avoid warning about unused variable by DUNE_UNUSED.

[[Imported from SVN: r7098]]
parent aa6199a3
No related branches found
No related tags found
No related merge requests found
......@@ -21,14 +21,14 @@ int main(int argc, char** argv)
{
Helper& mpi = Helper::instance(argc, argv);
Helper::MPICommunicator comm = mpi.getCommunicator();
Helper::MPICommunicator comm DUNE_UNUSED = mpi.getCommunicator();
comm= mpi.getCommunicator();
}
{
Helper& mpi = Helper::instance(argc, argv);
Helper::MPICommunicator comm= mpi.getCommunicator();
Helper::MPICommunicator comm DUNE_UNUSED = mpi.getCommunicator();
comm= mpi.getCommunicator();
#ifdef MPIHELPER_PREINITIALIZE
......
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