From 7d15edd44e24a162b550edac1b0308d5fe31515f Mon Sep 17 00:00:00 2001 From: Berenger Bramas <Berenger.Bramas@inria.fr> Date: Mon, 9 Mar 2015 13:43:43 +0100 Subject: [PATCH] remove warning from utest --- UTests/utestMpiBitonic.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UTests/utestMpiBitonic.cpp b/UTests/utestMpiBitonic.cpp index b49c4b344..2a2899bcc 100644 --- a/UTests/utestMpiBitonic.cpp +++ b/UTests/utestMpiBitonic.cpp @@ -122,7 +122,7 @@ class TestMpiBitonic : public FUTesterMpi<TestMpiBitonic> { //////////////////////////////////////////////////////////// void TestSmallSort(){ - const int myRank = app.global().processId(); + //const int myRank = app.global().processId(); const int nbProcess = app.global().processCount(); const int nbElements = nbProcess; @@ -143,7 +143,7 @@ class TestMpiBitonic : public FUTesterMpi<TestMpiBitonic> { } void TestSameSort(){ - const int myRank = app.global().processId(); + //const int myRank = app.global().processId(); const int nbProcess = app.global().processCount(); const int nbElements = nbProcess * 100; @@ -186,8 +186,8 @@ class TestMpiBitonic : public FUTesterMpi<TestMpiBitonic> { } void TestBigSort(){ - const int myRank = app.global().processId(); - const int nbProcess = app.global().processCount(); + //const int myRank = app.global().processId(); + //const int nbProcess = app.global().processCount(); const int nbElements = 500; std::unique_ptr<long[]> elements(new long[nbElements]); -- GitLab