mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Removed feof from operator unspecified_bool_type. Added eof().
In BufferedFile, removed feof from operator unspecified_bool_type. EOF can be queried separately using newly added eof().
This commit is contained in:
parent
f6472abae8
commit
7f3d027b83
3 changed files with 9 additions and 2 deletions
|
@ -52,7 +52,7 @@ void BufferedFileTest::testOpen()
|
|||
CPPUNIT_ASSERT(rd.getsn(buf, sizeof(buf)));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("charlie"), std::string(buf));
|
||||
|
||||
CPPUNIT_ASSERT(!rd);
|
||||
CPPUNIT_ASSERT(rd.eof());
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue