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:
Tatsuhiro Tsujikawa 2011-08-07 00:06:32 +09:00
parent f6472abae8
commit 7f3d027b83
3 changed files with 9 additions and 2 deletions

View file

@ -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