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;