serenity/Kernel/Bus/PCI
MacDue 9a120d7243 AK: Add support for "debug only" formatters
These are formatters that can only be used with debug print
functions, such as dbgln(). Currently this is limited to
Formatter<ErrorOr<T>>. With this you can still debug log ErrorOr
values (good for debugging), but trying to use them in any
String::formatted() call will fail (which prevents .to_string()
errors with the new failable strings being ignored).

You make a formatter debug only by adding a constexpr method like:
static constexpr bool is_debug_only() { return true; }
2023-01-13 21:09:26 +00:00
..
Controller Kernel: Turn lock ranks into template parameters 2023-01-02 18:15:27 -05:00
Access.cpp Kernel: Reorganize Arch/x86 directory to Arch/x86_64 after i686 removal 2022-12-28 11:53:41 +01:00
Access.h Kernel: Turn lock ranks into template parameters 2023-01-02 18:15:27 -05:00
API.cpp Kernel: Introduce the IOWindow class 2022-09-23 17:22:15 +01:00
API.h Kernel: Introduce the IOWindow class 2022-09-23 17:22:15 +01:00
Definitions.h Kernel: Introduce the IOWindow class 2022-09-23 17:22:15 +01:00
Device.cpp
Device.h AK: Add support for "debug only" formatters 2023-01-13 21:09:26 +00:00
IDs.h
Initializer.h