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)
|
||||
{
|
||||
StdioOutputStream sos(file);
|
||||
BufferedOutputStream bos(sos);
|
||||
tag_save(bos, tag);
|
||||
bos.Flush();
|
||||
WithBufferedOutputStream(sos, [&](auto &bos){
|
||||
tag_save(bos, tag);
|
||||
});
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
|
@ -124,9 +124,9 @@ static void
|
||||
tag_save(FILE *file, const Tag &tag)
|
||||
{
|
||||
StdioOutputStream sos(file);
|
||||
BufferedOutputStream bos(sos);
|
||||
tag_save(bos, tag);
|
||||
bos.Flush();
|
||||
WithBufferedOutputStream(sos, [&](auto &bos){
|
||||
tag_save(bos, tag);
|
||||
});
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user