mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #804 from bobsummerwill/fix_build_error
Fix build break in new TestHelper code
This commit is contained in:
commit
71a7d2921c
@ -28,7 +28,7 @@ Options::Options(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
tArgc = 0;
|
tArgc = 0;
|
||||||
tArgv = new char*[argc];
|
tArgv = new char*[argc];
|
||||||
for (size_t i = 0; i < argc; i++)
|
for (auto i = 0; i < argc; i++)
|
||||||
{
|
{
|
||||||
string arg = argv[i];
|
string arg = argv[i];
|
||||||
if (arg == "--ipc" && i + 1 < argc)
|
if (arg == "--ipc" && i + 1 < argc)
|
||||||
|
Loading…
Reference in New Issue
Block a user