mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:37:34 +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:
parent
6c5fb2ca63
commit
2909c3a931
4 changed files with 18 additions and 6 deletions
|
@ -37,6 +37,7 @@ public:
|
|||
Encoder& operator<<(i32);
|
||||
Encoder& operator<<(i64);
|
||||
Encoder& operator<<(float);
|
||||
Encoder& operator<<(double);
|
||||
Encoder& operator<<(char const*);
|
||||
Encoder& operator<<(StringView const&);
|
||||
Encoder& operator<<(String const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue