Skip to content

Commit 13ef198

Browse files
committed
Fix C4100 warnings
1 parent 63367c8 commit 13ef198

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tasks/all/runner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class UnreadMessagesDetector : public ::testing::EmptyTestEventListener {
1414
public:
1515
UnreadMessagesDetector() = default;
1616

17-
void OnTestEnd(const ::testing::TestInfo& test_info) override {
17+
void OnTestEnd(const ::testing::TestInfo& /*test_info*/) override {
1818
int rank = -1;
1919
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
2020

tasks/mpi/runner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class UnreadMessagesDetector : public ::testing::EmptyTestEventListener {
1111
public:
1212
UnreadMessagesDetector() = default;
1313

14-
void OnTestEnd(const ::testing::TestInfo& test_info) override {
14+
void OnTestEnd(const ::testing::TestInfo& /*test_info*/) override {
1515
int rank = -1;
1616
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
1717

0 commit comments

Comments
 (0)