Skip to content

Commit 0ea1124

Browse files
committed
Fixed warning of Intel Compiler:
- standard conformant main function in testrunner.cpp Fixed warning of Intel and MSVC Compilers: - commented out unused parameter
1 parent 57ebed2 commit 0ea1124

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cli/threadexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ void ThreadExecutor::reportErr(const ErrorLogger::ErrorMessage &/*msg*/)
316316

317317
}
318318

319-
void ThreadExecutor::reportInfo(const ErrorLogger::ErrorMessage &msg)
319+
void ThreadExecutor::reportInfo(const ErrorLogger::ErrorMessage &/*msg*/)
320320
{
321321

322322
}

test/testrunner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "testsuite.h"
2121
#include "options.h"
2222

23-
int main(int argc, const char *argv[])
23+
int main(int argc, char *argv[])
2424
{
2525
options args(argc, argv);
2626

0 commit comments

Comments
 (0)