Fix build break in new TestHelper code.

This commit is contained in:
Bob Summerwill 2016-08-02 23:03:40 -07:00
parent 4fbe4a1cc4
commit fe4180a85e

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)