Browse Source

Improve VM code formatting

cl-refactor
Paweł Bylica 10 years ago
parent
commit
f06445fcbb
  1. 2
      libevmjit/VM.cpp

2
libevmjit/VM.cpp

@ -28,7 +28,7 @@ bytesConstRef VM::go(ExtVMFace& _ext, OnOpFunc const&, uint64_t)
case ReturnCode::OutOfGas:
BOOST_THROW_EXCEPTION(OutOfGas());
case ReturnCode::StackTooSmall:
BOOST_THROW_EXCEPTION(StackTooSmall(1,0));
BOOST_THROW_EXCEPTION(StackTooSmall(1, 0));
case ReturnCode::BadInstruction:
BOOST_THROW_EXCEPTION(BadInstruction());
}

Loading…
Cancel
Save