Add a newline to the output in Target.hpp

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-01-01 00:36:28 +01:00
parent 6beccf242b
commit eb18940364
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -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;