Removing redundant ;

This commit is contained in:
Stefano Sanfilippo 2014-11-27 21:20:50 +01:00
parent 1ff2a2dd24
commit 5573307305

View File

@ -133,7 +133,7 @@ void Assignment::emit(std::ostream &stream, int indent) {
void Print::emit(std::ostream &stream, int indent) { void Print::emit(std::ostream &stream, int indent) {
stream << "std::cout << "; stream << "std::cout << ";
expression->emit(stream); expression->emit(stream);
stream << " << std::endl;"; stream << " << std::endl";
} }
void Input::emit(std::ostream &stream, int indent) { void Input::emit(std::ostream &stream, int indent) {