diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-07 22:54:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-07 22:55:33 +0200 |
commit | 3654710c418a8972555a5d079bfebca0b1fdb8e5 (patch) | |
tree | e23a0926a53e667cb8d46e3a7a5a7317204060e8 /DevTools | |
parent | b81b2a85c4b84b456630cf95fc37a0c429334164 (diff) | |
download | serenity-3654710c418a8972555a5d079bfebca0b1fdb8e5.zip |
LibIPC+Services: Support URL as a native IPC type
Diffstat (limited to 'DevTools')
-rw-r--r-- | DevTools/IPCCompiler/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/DevTools/IPCCompiler/main.cpp b/DevTools/IPCCompiler/main.cpp index 4a86508d7b..92525b2acf 100644 --- a/DevTools/IPCCompiler/main.cpp +++ b/DevTools/IPCCompiler/main.cpp @@ -244,6 +244,7 @@ int main(int argc, char** argv) out() << "#pragma once"; out() << "#include <AK/BufferStream.h>"; out() << "#include <AK/OwnPtr.h>"; + out() << "#include <AK/URL.h>"; out() << "#include <AK/Utf8View.h>"; out() << "#include <LibGfx/Color.h>"; out() << "#include <LibGfx/Rect.h>"; |