mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Use fold expr in fs::write_file
This commit is contained in:
parent
01b4c68238
commit
a6d06b2e20
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ namespace fs
|
|||
if (fs::file f{path, mode})
|
||||
{
|
||||
// Write args sequentially
|
||||
int seq[]{ (f.write(args), 0)... };
|
||||
(f.write(args), ...);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue