LibHTTP: Include JsonObject.h in Job.cpp

JsonArray.h does not #include the definition of JsonValue::serialize, as
it lives in JsonObject.h. The macOS Clang target handles symbol
visibility slightly differently (I couldn't figure out how exactly), so
no visible instantiation ended up being created for the function,
causing a link failure.
This commit is contained in:
Daniel Bertalan 2022-07-04 13:44:51 +02:00 committed by Andreas Kling
parent e15d6125b2
commit 569388e4af
Notes: sideshowbarker 2024-07-17 09:43:28 +09:00

View file

@ -6,7 +6,7 @@
*/
#include <AK/Debug.h>
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <LibCompress/Brotli.h>
#include <LibCompress/Gzip.h>
#include <LibCompress/Zlib.h>