refs #17, fix for wrong use of fs::ofstream

This commit is contained in:
Steffen Schuemann 2019-06-02 09:33:19 +02:00
parent b5e18c859d
commit e4e6246eaa

View File

@ -193,7 +193,7 @@ private:
static void generateFile(const fs::path& pathname, int withSize = -1)
{
fs::ofstream outfile(pathname.string());
fs::ofstream outfile(pathname);
if (withSize < 0) {
outfile << "Hello world!" << std::endl;
}