summaryrefslogtreecommitdiff
path: root/AK/JsonParser.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-08 12:34:33 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-08 13:06:51 +0100
commit900f51ccd0832caf8405620e74e14a17deea75c4 (patch)
treefd2a4a4023293728c8d56c226885d5448e093740 /AK/JsonParser.cpp
parentfa9fba69018dd7055794b9dfab81c7b89e98b279 (diff)
downloadserenity-900f51ccd0832caf8405620e74e14a17deea75c4.zip
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.
Diffstat (limited to 'AK/JsonParser.cpp')
-rw-r--r--AK/JsonParser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/JsonParser.cpp b/AK/JsonParser.cpp
index b99bb91bd5..323a0308f6 100644
--- a/AK/JsonParser.cpp
+++ b/AK/JsonParser.cpp
@@ -27,6 +27,7 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonParser.h>
+#include <AK/Memory.h>
namespace AK {