ladybird/Kernel/Storage
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
..
Partition AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
IDEChannel.cpp Everywhere: Replace a bundle of dbg with dbgln. 2021-01-11 11:55:47 +01:00
IDEChannel.h Kernel: Add a method to gather the devices count of a Storage controller 2020-12-21 00:19:21 +01:00
IDEController.cpp Kernel: Change the indexing of storage devices in IDEController class 2020-12-21 00:19:21 +01:00
IDEController.h Kernel: Change the indexing of storage devices in IDEController class 2020-12-21 00:19:21 +01:00
PATADiskDevice.cpp Kernel: Introduce the new Storage subsystem 2020-12-21 00:19:21 +01:00
PATADiskDevice.h Kernel: Introduce the new Storage subsystem 2020-12-21 00:19:21 +01:00
StorageController.h Kernel: Add a method to gather the devices count of a Storage controller 2020-12-21 00:19:21 +01:00
StorageDevice.cpp Kernel: Introduce the new Storage subsystem 2020-12-21 00:19:21 +01:00
StorageDevice.h Kernel: Introduce a new partitioning subsystem 2020-12-27 23:07:44 +01:00
StorageManagement.cpp AK: Simplify constructors and conversions from nullptr_t 2021-01-12 09:11:45 +01:00
StorageManagement.h Kernel: Allow to boot from a partition with partition UUID 2021-01-01 22:59:48 +01:00