streams: Base BufferedFile on AutoFile instead of CAutoFile

This commit is contained in:
Anthony Towns
2023-11-15 13:07:14 +10:00
parent 98b0acda0f
commit e63f643079
3 changed files with 4 additions and 11 deletions

View File

@@ -271,9 +271,6 @@ BOOST_AUTO_TEST_CASE(streams_buffered_file)
BufferedFile bf{file, 25, 10};
BOOST_CHECK(!bf.eof());
// This member has no functional effect.
BOOST_CHECK_EQUAL(bf.GetVersion(), 333);
uint8_t i;
bf >> i;
BOOST_CHECK_EQUAL(i, 0);