ladybird/Libraries/LibIPC
Lenny Maiorani e6f907a155 AK: Simplify constructors and conversions from nullptr_t
Problem:
- Many constructors are defined as `{}` rather than using the ` =
  default` compiler-provided constructor.
- Some types provide an implicit conversion operator from `nullptr_t`
  instead of requiring the caller to default construct. This violates
  the C++ Core Guidelines suggestion to declare single-argument
  constructors explicit
  (https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c46-by-default-declare-single-argument-constructors-explicit).

Solution:
- Change default constructors to use the compiler-provided default
  constructor.
- Remove implicit conversion operators from `nullptr_t` and change
  usage to enforce type consistency without conversion.
2021-01-12 09:11:45 +01:00
..
ClientConnection.h LibIPC: Remove unused DisconnectedEvent mechanism 2020-09-12 14:49:29 +02:00
CMakeLists.txt Build: Switch to CMake :^) 2020-05-14 20:15:18 +02:00
Connection.h AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
Decoder.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
Decoder.h LibIPC: Support sending file descriptors :^) 2020-11-23 18:37:40 +01:00
Dictionary.h Clipboard: Add a key-value map alongside the clipboard storage 2020-09-05 16:52:24 +02:00
Encoder.cpp LibIPC: Support sending file descriptors :^) 2020-11-23 18:37:40 +01:00
Encoder.h LibIPC: Support sending file descriptors :^) 2020-11-23 18:37:40 +01:00
Endpoint.cpp LibIPC: Remove leading I from filenames 2020-02-06 14:54:09 +01:00
Endpoint.h LibIPC: Remove leading I from filenames 2020-02-06 14:54:09 +01:00
File.h LibIPC: Support sending file descriptors :^) 2020-11-23 18:37:40 +01:00
Forward.h LibIPC: Support sending file descriptors :^) 2020-11-23 18:37:40 +01:00
Message.cpp LibIPC: Add an on_destruction hook to IPC::Message 2020-12-30 20:37:41 +01:00
Message.h LibIPC: Add an on_destruction hook to IPC::Message 2020-12-30 20:37:41 +01:00
ServerConnection.h LibIPC: Move notifier handling entirely to IPC::Connection base class 2020-09-12 14:49:29 +02:00