diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-03-12 18:54:11 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-03-12 18:54:11 +0800 |
commit | 5f43489d3db4c0ec20f21960687a2478dd7e2b3b (patch) | |
tree | 30d3c809efebf0bef35d877a42421c869ca91a7c /checkRandomVMTest.cpp | |
parent | 76c3e165cac2f1ebb246ad6e9febf480dcd60a0d (diff) | |
download | dexon-solidity-5f43489d3db4c0ec20f21960687a2478dd7e2b3b.tar.gz dexon-solidity-5f43489d3db4c0ec20f21960687a2478dd7e2b3b.tar.zst dexon-solidity-5f43489d3db4c0ec20f21960687a2478dd7e2b3b.zip |
style fix
Diffstat (limited to 'checkRandomVMTest.cpp')
-rw-r--r-- | checkRandomVMTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/checkRandomVMTest.cpp b/checkRandomVMTest.cpp index e3442d43..c9635771 100644 --- a/checkRandomVMTest.cpp +++ b/checkRandomVMTest.cpp @@ -32,7 +32,7 @@ using namespace json_spirit; using namespace dev::test; using namespace dev; -bool doVMTest(mValue& v); +bool doVMTest(mValue& _v); int main(int argc, char *argv[]) { @@ -66,11 +66,11 @@ int main(int argc, char *argv[]) return ret; } -bool doVMTest(mValue& v) +bool doVMTest(mValue& _v) { eth::VMFactory::setKind(eth::VMKind::JIT); - for (auto& i: v.get_obj()) + for (auto& i: _v.get_obj()) { cnote << i.first; mObject& o = i.second.get_obj(); |