diff --git a/src/headers/transpiler/Target.hpp b/src/headers/transpiler/Target.hpp index dd6e32b..795aac7 100644 --- a/src/headers/transpiler/Target.hpp +++ b/src/headers/transpiler/Target.hpp @@ -144,7 +144,8 @@ public: separate_transpileTree(tree); return output.str() + '\n'; }; - explicit Target(const bool& newLines): newLines(newLines), separator() {}; + explicit Target(const bool& newLines): output(), newLines(newLines), separator() {}; + Target() = delete; virtual ~Target() = default; };