aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorarkpar <arkady.paronyan@gmail.com>2015-01-13 18:18:08 +0800
committerarkpar <arkady.paronyan@gmail.com>2015-01-13 18:18:08 +0800
commitb85ae53f63b845eb872e15aed56fccf3a5d39153 (patch)
treef9da37c12e11e5d55d3f8ab453ea095825b3f09e /vm.cpp
parent3e172da03f0d24dd594fdf91dba2b1a8689da6d5 (diff)
downloaddexon-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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.cpp b/vm.cpp
index 6ae95f25..8b8c75a0 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -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;