Fix build

This commit is contained in:
Wojtek Figat
2022-01-09 18:05:52 +01:00
parent 892723c501
commit 729bfcb941
4 changed files with 33 additions and 26 deletions

View File

@@ -523,6 +523,12 @@ void WriteStream::WriteText(const StringView& text)
WriteChar(text[i]);
}
void WriteStream::WriteText(const StringAnsiView& text)
{
for (int32 i = 0; i < text.Length(); i++)
WriteChar(text[i]);
}
void WriteStream::WriteString(const StringView& data)
{
const int32 length = data.Length();