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

LibIPC: Replace u32/u64 value coders with u/ul/ull value coders

We can and should do more cleanups of this kind, but this is a quick fix
to unbreak the 32-bit HackStudio build.
This commit is contained in:
Andreas Kling 2021-11-29 02:18:58 +01:00
parent 16746efcf8
commit ddce053f6c
4 changed files with 42 additions and 9 deletions

View file

@ -34,8 +34,9 @@ public:
ErrorOr<void> decode(bool&);
ErrorOr<void> decode(u8&);
ErrorOr<void> decode(u16&);
ErrorOr<void> decode(u32&);
ErrorOr<void> decode(u64&);
ErrorOr<void> decode(unsigned&);
ErrorOr<void> decode(unsigned long&);
ErrorOr<void> decode(unsigned long long&);
ErrorOr<void> decode(i8&);
ErrorOr<void> decode(i16&);
ErrorOr<void> decode(i32&);