1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:07:35 +00:00

AK: Move memory streams into their own header.

This commit is contained in:
asynts 2020-09-01 11:43:32 +02:00 committed by Andreas Kling
parent f9516a99bf
commit b68a873067
12 changed files with 314 additions and 298 deletions

View file

@ -27,7 +27,7 @@
#include <AK/TestSuite.h>
#include <AK/FixedArray.h>
#include <AK/Stream.h>
#include <AK/MemoryStream.h>
static bool compare(ReadonlyBytes lhs, ReadonlyBytes rhs)
{
@ -160,4 +160,4 @@ TEST_CASE(read_endian_values)
EXPECT_EQ(value2, 0x04050607u);
}
TEST_MAIN(Stream)
TEST_MAIN(MemoryStream)