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

@@ -836,7 +836,7 @@ std::streambuf::pos_type Streambuf::seekpos(std::streambuf::pos_type pos,
// The custom string handler written by realthunder for the LinkStage3 toponaming code, to handle
// reading multi-line strings directly into a std::string. Imported from LinkStage3 and refactored
// during the TNP mitigation project in February 2024.
ASCIIInputStream& ASCIIInputStream::operator>>(std::string& outputString)
TextInputStream& TextInputStream::operator>>(std::string& outputString)
{
uint32_t numberOfLines;
char inputChar;