diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-13 23:44:48 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-13 23:44:48 +0200 |
commit | 9b765b42e4e28bf771b92329879ab610f5438260 (patch) | |
tree | 575fdf9c453d33bed693f18aed295fd08e300ca2 /Userland/Services | |
parent | 90e31b4f39d0d2baf08e9d8bee4e67b5f728e0fc (diff) | |
download | serenity-9b765b42e4e28bf771b92329879ab610f5438260.zip |
InspectorServer: Add missing <AK/JsonObject.h> include
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/InspectorServer/ClientConnection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/InspectorServer/ClientConnection.cpp b/Userland/Services/InspectorServer/ClientConnection.cpp index 0fccb06c84..b7bd2d0878 100644 --- a/Userland/Services/InspectorServer/ClientConnection.cpp +++ b/Userland/Services/InspectorServer/ClientConnection.cpp @@ -5,6 +5,7 @@ */ #include "InspectableProcess.h" +#include <AK/JsonObject.h> #include <InspectorServer/ClientConnection.h> namespace InspectorServer { |