1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:37:44 +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

@ -30,8 +30,9 @@ public:
Encoder& operator<<(bool);
Encoder& operator<<(u8);
Encoder& operator<<(u16);
Encoder& operator<<(u32);
Encoder& operator<<(u64);
Encoder& operator<<(unsigned);
Encoder& operator<<(unsigned long);
Encoder& operator<<(unsigned long long);
Encoder& operator<<(i8);
Encoder& operator<<(i16);
Encoder& operator<<(i32);
@ -95,6 +96,9 @@ public:
}
private:
void encode_u32(u32);
void encode_u64(u64);
MessageBuffer& m_buffer;
};