From 8464da143987e290fa3d9ad739b491e6adbffee6 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Sun, 22 Jan 2023 05:09:11 +0100 Subject: AK: Move `Stream` and `SeekableStream` from `LibCore` `Stream` will be qualified as `AK::Stream` until we remove the `Core::Stream` namespace. `IODevice` now reuses the `SeekMode` that is defined by `SeekableStream`, since defining its own would require us to qualify it with `AK::SeekMode` everywhere. --- Documentation/CodingStyle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Documentation') diff --git a/Documentation/CodingStyle.md b/Documentation/CodingStyle.md index e09096ae7f..b526658942 100644 --- a/Documentation/CodingStyle.md +++ b/Documentation/CodingStyle.md @@ -666,7 +666,7 @@ T* ret = reinterpret_cast(buffer); ``` ```cpp -// Core::Stream::SeekableStream::tell() +// SeekableStream::tell() // Seek with 0 and SEEK_CUR does not modify anything despite the const_cast, // so it's safe to do this. -- cgit v1.2.3