Fixed (unexpected) compilation error: Cast argv to 'const char**'
This commit is contained in:
parent
0ea1124a19
commit
524df179af
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue