mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix build break in new TestHelper code.
This commit is contained in:
parent
4fbe4a1cc4
commit
fe4180a85e
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user