aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBob Summerwill <bob@summerwill.net>2016-08-03 14:03:40 +0800
committerBob Summerwill <bob@summerwill.net>2016-08-03 14:03:40 +0800
commitfe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd (patch)
tree27b8a1856096730502060df2e36443ec58b9f0f9 /test
parent4fbe4a1cc42e6f64d5874f2a557a31ee5911f8c2 (diff)
downloaddexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar
dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.gz
dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.bz2
dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.lz
dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.xz
dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.tar.zst
dexon-solidity-fe4180a85e0d75d5d8b86fcaf749dd9bd3a06cbd.zip
Fix build break in new TestHelper code.
Diffstat (limited to 'test')
-rw-r--r--test/TestHelper.cpp2
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)