Browse Source

Warning fix.

cl-refactor
Gav Wood 10 years ago
parent
commit
f3a98d00de
  1. 2
      libweb3jsonrpc/WebThreeStubServerBase.cpp

2
libweb3jsonrpc/WebThreeStubServerBase.cpp

@ -646,6 +646,7 @@ string WebThreeStubServerBase::eth_compileSerpent(string const& _code)
{ {
// TODO throw here jsonrpc errors // TODO throw here jsonrpc errors
string res; string res;
(void)_code;
#if SERPENT #if SERPENT
try try
{ {
@ -666,6 +667,7 @@ string WebThreeStubServerBase::eth_compileSerpent(string const& _code)
string WebThreeStubServerBase::eth_compileSolidity(string const& _code) string WebThreeStubServerBase::eth_compileSolidity(string const& _code)
{ {
// TOOD throw here jsonrpc errors // TOOD throw here jsonrpc errors
(void)_code;
string res; string res;
#if SOLIDITY #if SOLIDITY
dev::solidity::CompilerStack compiler; dev::solidity::CompilerStack compiler;

Loading…
Cancel
Save