From eb18940364ec8bd03668131ded13be0037c34ffd Mon Sep 17 00:00:00 2001 From: Username404 Date: Sat, 1 Jan 2022 00:36:28 +0100 Subject: [PATCH] Add a newline to the output in Target.hpp Signed-off-by: Username404 --- src/headers/transpiler/Target.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/headers/transpiler/Target.hpp b/src/headers/transpiler/Target.hpp index 9a03117..cb26d57 100644 --- a/src/headers/transpiler/Target.hpp +++ b/src/headers/transpiler/Target.hpp @@ -104,7 +104,7 @@ public: ) += " is not supported by the current target"); } } - return output.str(); + return output.str() + '\n'; }; explicit Target(const bool newLines): newLines(newLines) {}; virtual ~Target() = default;