ladybird/Userland
Daniel Bertalan b76ad3db90 IPCCompiler+WindowServer: Fix deleted function warning
It might be the case that we are passing non-movable/non-copyable things
through IPC. In this case, Clang will emit a warning as it can't
generate the requested default move/copy ctor for the IPC message.

To fix this, we use a `#pragma` to make the compiler silently ignore our
request.

The same was the case with the three-way comparison in `Screen`. Since
we don't use the three-way comparison operator anywhere else in our
codebase, we simply use the `==` operator instead.
2021-07-08 10:11:00 +02:00
..
Applets Everywhere: Don't promote float to double where not needed 2021-07-08 10:11:00 +02:00
Applications Everywhere: Remove unused local variables and lambda captures 2021-07-08 10:11:00 +02:00
Demos AK+Userland: Add generic AK::abs() function and use it 2021-07-08 10:11:00 +02:00
DevTools IPCCompiler+WindowServer: Fix deleted function warning 2021-07-08 10:11:00 +02:00
DynamicLoader DynamicLoader: Don't use LibELF to do the initial relocations 2021-07-07 11:53:17 +02:00
Games GameOfLife: Properly switch between play and pause icon 2021-07-07 15:29:37 +01:00
Libraries Everywhere: Don't promote float to double where not needed 2021-07-08 10:11:00 +02:00
Services IPCCompiler+WindowServer: Fix deleted function warning 2021-07-08 10:11:00 +02:00
Shell Everywhere: Prefer using "..."sv over StringView { "..." } 2021-07-04 14:24:03 +02:00
Utilities WindowServer+wsctl: Add a simple utility for toggling "flash flush" 2021-07-07 22:56:46 +02:00
CMakeLists.txt Tests: Establish root Tests directory, move Userland/Tests there 2021-05-06 17:54:28 +02:00