fixed new line for user input from terminal.

This commit is contained in:
Liana Husikyan
2015-03-10 12:02:48 +01:00
parent 665edd3f86
commit c6653d5ffc
+1 -1
View File
@@ -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