Merge pull request #1737 from chriseth/sol_fix_solcWithoutJson

Do not handle combined JSON if option not given.
This commit is contained in:
chriseth 2015-04-24 12:51:11 +02:00
commit bb788bcbc3

View File

@ -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;