Browse Source

Do not handle combined JSON if option not given.

cl-refactor
chriseth 10 years ago
parent
commit
bd5698b070
  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