includes/std: Make std::file::flush not delete files (#246)

This commit is contained in:
Marijn Kneppers
2024-05-12 23:39:49 +02:00
committed by GitHub
parent 9c6bfeb50f
commit 5799d1d7ea

View File

@@ -97,7 +97,7 @@ namespace auto std::file {
@param handle The handle of the file to flush
*/
fn flush(Handle handle) {
builtin::std::file::remove(handle);
builtin::std::file::flush(handle);
};