Base: Rename ASCIIInputStream to TextInputStream

This commit is contained in:
Chris Hennes
2024-02-19 21:02:34 -06:00
committed by wwmayer
parent 756329e7f4
commit f4741fc7c8
3 changed files with 23 additions and 23 deletions

View File

@@ -621,7 +621,7 @@ void StringHasher::RestoreDocFile(Base::Reader& reader)
void StringHasher::restoreStreamNew(std::istream& stream, std::size_t count)
{
Base::ASCIIInputStream asciiStream (stream);
Base::TextInputStream asciiStream (stream);
_hashes->clear();
std::string content;
boost::io::ios_flags_saver ifs(stream);