Browse Source

fixed new line for user input from terminal.

cl-refactor
Liana Husikyan 10 years ago
parent
commit
f7841a9b49
  1. 2
      solc/CommandLineInterface.cpp

2
solc/CommandLineInterface.cpp

@ -272,7 +272,7 @@ bool CommandLineInterface::processInput()
while (!cin.eof())
{
getline(cin, s);
m_sourceCodes["<stdin>"].append(s);
m_sourceCodes["<stdin>"].append(s + '\n');
}
}
else

Loading…
Cancel
Save