Fixed (unexpected) compilation error: Cast argv to 'const char**'

This commit is contained in:
PKEuS 2012-07-11 02:29:20 -07:00
parent 0ea1124a19
commit 524df179af
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
int main(int argc, char *argv[])
{
options args(argc, argv);
options args(argc, const_cast<const char**>(argv));
std::size_t ret = TestFixture::runTests(args);