summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/StorageKit/AHCI.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/StorageKit/AHCI.h')
-rw-r--r--src/kernel/StorageKit/AHCI.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/kernel/StorageKit/AHCI.h b/src/kernel/StorageKit/AHCI.h
index 2ac0032d..2b2988fc 100644
--- a/src/kernel/StorageKit/AHCI.h
+++ b/src/kernel/StorageKit/AHCI.h
@@ -15,8 +15,9 @@ namespace Kernel {
/// @note The class is derived from the IDevice class.
class AHCIDeviceInterface NE_DEVICE<IMountpoint*> {
public:
- explicit AHCIDeviceInterface(void (*out)(IDevice* self, IMountpoint* out),
- void (*in)(IDevice* self, IMountpoint* in));
+ AHCIDeviceInterface() = default;
+ AHCIDeviceInterface(void (*out)(IDevice* self, IMountpoint* out),
+ void (*in)(IDevice* self, IMountpoint* in));
virtual ~AHCIDeviceInterface() override;