Merge pull request #804 from bobsummerwill/fix_build_error

Fix build break in new TestHelper code
This commit is contained in:
Bob Summerwill 2016-08-02 23:09:32 -07:00 committed by GitHub
commit 71a7d2921c

View File

@ -28,7 +28,7 @@ Options::Options(int argc, char** argv)
{
tArgc = 0;
tArgv = new char*[argc];
for (size_t i = 0; i < argc; i++)
for (auto i = 0; i < argc; i++)
{
string arg = argv[i];
if (arg == "--ipc" && i + 1 < argc)