test/run_input: use WithBufferedOutputStream()
This commit is contained in:
parent
2e93a83dd5
commit
d7838950d8
@ -41,9 +41,9 @@ static void
|
|||||||
tag_save(FILE *file, const Tag &tag)
|
tag_save(FILE *file, const Tag &tag)
|
||||||
{
|
{
|
||||||
StdioOutputStream sos(file);
|
StdioOutputStream sos(file);
|
||||||
BufferedOutputStream bos(sos);
|
WithBufferedOutputStream(sos, [&](auto &bos){
|
||||||
tag_save(bos, tag);
|
tag_save(bos, tag);
|
||||||
bos.Flush();
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
|
@ -124,9 +124,9 @@ static void
|
|||||||
tag_save(FILE *file, const Tag &tag)
|
tag_save(FILE *file, const Tag &tag)
|
||||||
{
|
{
|
||||||
StdioOutputStream sos(file);
|
StdioOutputStream sos(file);
|
||||||
BufferedOutputStream bos(sos);
|
WithBufferedOutputStream(sos, [&](auto &bos){
|
||||||
tag_save(bos, tag);
|
tag_save(bos, tag);
|
||||||
bos.Flush();
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
Loading…
Reference in New Issue
Block a user