diff options
author | arkpar <arkady.paronyan@gmail.com> | 2015-01-13 18:18:08 +0800 |
---|---|---|
committer | arkpar <arkady.paronyan@gmail.com> | 2015-01-13 18:18:08 +0800 |
commit | b85ae53f63b845eb872e15aed56fccf3a5d39153 (patch) | |
tree | f9da37c12e11e5d55d3f8ab453ea095825b3f09e /vm.cpp | |
parent | 3e172da03f0d24dd594fdf91dba2b1a8689da6d5 (diff) | |
download | dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.tar dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.tar.gz dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.tar.bz2 dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.tar.lz dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.tar.xz dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.tar.zst dexon-solidity-b85ae53f63b845eb872e15aed56fccf3a5d39153.zip |
fixed warnings for msvc build
Diffstat (limited to 'vm.cpp')
-rw-r--r-- | vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -345,7 +345,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin) output = vm->go(fev, fev.simpleTrace()).toBytes(); gas = vm->gas(); } - catch (VMException const& _e) + catch (VMException const&) { cnote << "Safe VM Exception"; vmExceptionOccured = true; |