mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12: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})
|
if (fs::file f{path, mode})
|
||||||
{
|
{
|
||||||
// Write args sequentially
|
// Write args sequentially
|
||||||
int seq[]{ (f.write(args), 0)... };
|
(f.write(args), ...);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue