ladybird/Kernel/ACPI
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
..
Definitions.h Everywhere: Re-format with clang-format-11 2020-12-31 21:51:00 +01:00
DynamicParser.cpp Kernel: Remove redundant "ACPI" from filenames in ACPI/ 2020-04-09 18:17:27 +02:00
DynamicParser.h Meta+Kernel: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
Initialize.cpp Kernel: Simplify scanning BIOS/EBDA and MP parser initialization 2020-05-22 13:36:57 +02:00
Initialize.h Kernel: Remove "non-operational" ACPI parser state 2020-04-09 17:19:11 +02:00
MultiProcessorParser.cpp AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
MultiProcessorParser.h Everywhere: Re-format with clang-format-11 2020-12-31 21:51:00 +01:00
Parser.cpp Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf 2021-01-11 21:06:32 +01:00
Parser.h Kernel: Assume 8042 controller is present if ACPI FADT revision <= 1 2020-11-12 18:04:16 +01:00