mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:47:46 +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:
parent
16746efcf8
commit
ddce053f6c
4 changed files with 42 additions and 9 deletions
|
@ -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&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue