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:
PKEuS 2012-07-11 01:26:32 -07:00
parent 57ebed20c4
commit 0ea1124a19
2 changed files with 2 additions and 2 deletions

View File

@ -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*/)
{
}

View File

@ -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);