From ca7b8d7e94e0bef7e56072f02c871bf385f21784 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 2 Apr 2025 21:54:55 +0200 Subject: WIP --- test/tmpfile.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/tmpfile.h') diff --git a/test/tmpfile.h b/test/tmpfile.h index 0f83a20..486cf2e 100644 --- a/test/tmpfile.h +++ b/test/tmpfile.h @@ -17,7 +17,12 @@ public: while(!fp) { filename = tmp_file_template.string() + std::to_string(counter++); + // TODO: Use std::fstream.open() with openmode noreplace when using c++23 +#if defined(_WIN32) + fopen_s(&fp, filename.data(), "wx"); +#else fp = std::fopen(filename.data(), "wx"); +#endif } std::fwrite(data.data(), data.size(), 1, fp); std::fclose(fp); -- cgit v1.2.3