diff options
author | Tim Schumacher <timschumi@gmx.de> | 2023-01-22 05:09:11 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-29 19:16:44 -0700 |
commit | 8464da143987e290fa3d9ad739b491e6adbffee6 (patch) | |
tree | 58905a6ac790d1e2368b9132403b190271617c4b /Documentation | |
parent | 5f2ea31816612dead5bc7ac59d27da0bc4b45736 (diff) | |
download | serenity-8464da143987e290fa3d9ad739b491e6adbffee6.zip |
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.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/CodingStyle.md | 2 |
1 files changed, 1 insertions, 1 deletions
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<T*>(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. |