Fixed missed rename of 'Read()'

This commit is contained in:
Kawe Mazidjatari 2022-05-30 02:47:55 +02:00
parent 2ee9cce393
commit 5b75903ac2

View File

@ -186,7 +186,7 @@ string CIOStream::ReadString()
{
char c;
string result = "";
while (!reader.eof() && (c = read<char>()) != '\0')
while (!reader.eof() && (c = Read<char>()) != '\0')
{
result += c;
}