diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-07 09:39:07 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-07 09:39:07 +0200 |
| commit | eb076dbf3754f44efdda926e1cc55a5c86136f5c (patch) | |
| tree | 6391d97d885dcf6d85f8824aec29c60c4dea2d78 /Boot/BootKit/Device.hxx | |
| parent | e477d85ffea45a92aea7a2942bdfb9240fed80bc (diff) | |
MHR-36: IMP: Add ProgramLoader class, *_cast macros and patching capability.
FIX: Device constructor marked as explicit.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Boot/BootKit/Device.hxx')
| -rw-r--r-- | Boot/BootKit/Device.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Boot/BootKit/Device.hxx b/Boot/BootKit/Device.hxx index 234ab6bd..2c6ddd6b 100644 --- a/Boot/BootKit/Device.hxx +++ b/Boot/BootKit/Device.hxx @@ -14,7 +14,7 @@ using namespace Kernel; class Device { public: - Device() = default; + explicit Device() = default; virtual ~Device() = default; NEWOS_MOVE_DEFAULT(Device); |
