1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

LibIPC: Move IPC::Encoder functions out of line

Compiling anything that includes generated IPC messages is painfully
slow at the moment. This moves the encoding helpers out of line, which
helps a bit. Doing the same for decoding will help more.
This commit is contained in:
Andreas Kling 2020-02-15 11:27:47 +01:00
parent ef01af1cb2
commit 2ae9a56c3f
4 changed files with 157 additions and 109 deletions

View file

@ -1,4 +1,5 @@
OBJS = \
Encoder.o \
Endpoint.o \
Message.o