Fixed warning of Intel Compiler:
- standard conformant main function in testrunner.cpp Fixed warning of Intel and MSVC Compilers: - commented out unused parameter
This commit is contained in:
parent
57ebed20c4
commit
0ea1124a19
|
@ -316,7 +316,7 @@ void ThreadExecutor::reportErr(const ErrorLogger::ErrorMessage &/*msg*/)
|
|||
|
||||
}
|
||||
|
||||
void ThreadExecutor::reportInfo(const ErrorLogger::ErrorMessage &msg)
|
||||
void ThreadExecutor::reportInfo(const ErrorLogger::ErrorMessage &/*msg*/)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include "testsuite.h"
|
||||
#include "options.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
options args(argc, argv);
|
||||
|
||||
|
|
Loading…
Reference in New Issue