LibCore+LibIPC: Move various encode/decode specializations to LibIPC

This removes a dependency on LibIPC from LibCore.
This commit is contained in:
rmg-x 2025-06-13 18:20:29 -05:00 committed by Tim Flynn
commit a4d931d14a
Notes: github-actions[bot] 2025-06-14 20:04:39 +00:00
7 changed files with 22 additions and 34 deletions

View file

@ -12,7 +12,6 @@
#include <AK/RefCounted.h>
#include <AK/RefPtr.h>
#include <AK/Types.h>
#include <LibIPC/Forward.h>
namespace Core {
@ -75,13 +74,3 @@ private:
};
}
namespace IPC {
template<>
ErrorOr<void> encode(Encoder&, Core::AnonymousBuffer const&);
template<>
ErrorOr<Core::AnonymousBuffer> decode(Decoder&);
}