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

LibIPC: Add support for transferring doubles over IPC messages

I'm still wondering why nobody did this yet :^) Also changes the use of
unions for the more cleaner / less undefined AK::bit_cast.
This commit is contained in:
kleines Filmröllchen 2021-08-26 03:05:01 +02:00 committed by Andreas Kling
parent 6c5fb2ca63
commit 2909c3a931
4 changed files with 18 additions and 6 deletions

View file

@ -41,6 +41,7 @@ public:
bool decode(i32&);
bool decode(i64&);
bool decode(float&);
bool decode(double&);
bool decode(String&);
bool decode(ByteBuffer&);
bool decode(URL&);