ladybird/Services
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
..
AudioServer Everywhere: Convert a bunch of dbgprintf() to dbgln() 2021-01-10 10:02:20 +01:00
ChessEngine Everywhere: Colour => Color 2021-01-09 14:03:06 +01:00
Clipboard AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
CrashDaemon CrashDaemon: Use pledge 2021-01-11 19:03:09 +01:00
DHCPClient Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf 2021-01-11 21:06:32 +01:00
EchoServer EchoServer: Add a simple echo server 2020-12-16 17:29:12 +01:00
ImageDecoder AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
LaunchServer AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
LookupServer Everywhere: Re-format with clang-format-11 2020-12-31 21:51:00 +01:00
NotificationServer Everywhere: Replace a bundle of dbg with dbgln. 2021-01-09 21:11:09 +01:00
ProtocolServer AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
SystemMenu SystemMenu: Tweak text "About..." => "About SerenityOS" 2021-01-04 23:23:55 +01:00
SystemServer Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf 2021-01-11 21:06:32 +01:00
Taskbar Everywhere: Convert a bunch of dbgprintf() to dbgln() 2021-01-10 10:02:20 +01:00
TelnetServer Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf 2021-01-11 21:06:32 +01:00
WebContent Everywhere: Replace a bundle of dbg with dbgln. 2021-01-09 21:11:09 +01:00
WebServer Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf 2021-01-11 21:06:32 +01:00
WindowServer AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
CMakeLists.txt CrashDaemon: Move from Applications to Services 2020-12-30 03:20:06 +01:00