1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 06:04:57 +00:00

AK: Move memory stuff (fast memcpy, etc) to a separate header

Move the "fast memcpy" stuff out of StdLibExtras.h and into Memory.h.
This will break a ton of things that were relying on StdLibExtras.h
to include a bunch of other headers. Fix will follow immediately after.

This makes it possible to include StdLibExtras.h from Types.h, which is
the main point of this exercise.
This commit is contained in:
Andreas Kling 2020-03-08 12:34:33 +01:00
parent fa9fba6901
commit 900f51ccd0
11 changed files with 57 additions and 49 deletions

View file

@ -27,6 +27,7 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonParser.h>
#include <AK/Memory.h>
namespace AK {