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
commit 900f51ccd0
Notes: sideshowbarker 2024-07-19 08:50:24 +09:00
11 changed files with 57 additions and 49 deletions

View file

@ -25,6 +25,7 @@
*/
#include <AK/ByteBuffer.h>
#include <AK/Memory.h>
#include <AK/String.h>
#include <AK/StringView.h>
#include <AK/Vector.h>