diff options
author | Bob Summerwill <bob@summerwill.net> | 2016-08-03 14:03:40 +0800 |
---|---|---|
committer | Bob Summerwill <bob@summerwill.net> | 2016-08-03 14:03:40 +0800 |
commit | fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd (patch) | |
tree | 27b8a1856096730502060df2e36443ec58b9f0f9 /test/TestHelper.cpp | |
parent | 4fbe4a1cc42e6f64d5874f2a557a31ee5911f8c2 (diff) | |
download | dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.gz dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.zst dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.zip |
Fix build break in new TestHelper code.
Diffstat (limited to 'test/TestHelper.cpp')
-rw-r--r-- | test/TestHelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TestHelper.cpp b/test/TestHelper.cpp index e85ace36..a704ab17 100644 --- a/test/TestHelper.cpp +++ b/test/TestHelper.cpp @@ -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) |