From 55733073051490eb56db408b5668cd7c6c9b19a5 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Thu, 27 Nov 2014 21:20:50 +0100 Subject: [PATCH] Removing redundant ; --- Nodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nodes.cpp b/Nodes.cpp index f9feb68..e5cae31 100644 --- a/Nodes.cpp +++ b/Nodes.cpp @@ -133,7 +133,7 @@ void Assignment::emit(std::ostream &stream, int indent) { void Print::emit(std::ostream &stream, int indent) { stream << "std::cout << "; expression->emit(stream); - stream << " << std::endl;"; + stream << " << std::endl"; } void Input::emit(std::ostream &stream, int indent) {