Browse Source

Merge pull request #1737 from chriseth/sol_fix_solcWithoutJson

Do not handle combined JSON if option not given.
cl-refactor
chriseth 10 years ago
parent
commit
97b35c4cfb
  1. 3
      solc/CommandLineInterface.cpp

3
solc/CommandLineInterface.cpp

@ -380,6 +380,9 @@ bool CommandLineInterface::processInput()
void CommandLineInterface::handleCombinedJSON()
{
if (!m_args.count("combined-json"))
return;
Json::Value output(Json::objectValue);
set<string> requests;

Loading…
Cancel
Save