From 593b658eb1491d4b3103971aba6592aff2765f0e Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Mon, 8 Sep 2025 01:46:00 +0800 Subject: Fix some compile errors on Windows. --- src/base/io/Stream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/base/io/Stream.cpp') diff --git a/src/base/io/Stream.cpp b/src/base/io/Stream.cpp index 9b7ef856..4cb58eca 100644 --- a/src/base/io/Stream.cpp +++ b/src/base/io/Stream.cpp @@ -171,11 +171,11 @@ Index Stream::DoGetSize() { } Index Stream::DoRead(std::byte* buffer, Index offset, Index size) { - throw Exception(u"Stream is readable but DoSeek is not implemented."); + throw Exception(u"Stream is readable but DoRead is not implemented."); } Index Stream::DoWrite(const std::byte* buffer, Index offset, Index size) { - throw Exception(u"Stream is writable but DoSeek is not implemented."); + throw Exception(u"Stream is writable but DoWrite is not implemented."); } void Stream::DoFlush() {} -- cgit v1.2.3