summaryrefslogtreecommitdiffhomepage
path: root/src/kernel
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-24 22:46:59 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-24 22:46:59 +0100
commitf6ebfb03322353ef19a021524203be1a7c702104 (patch)
tree029c2eac4c47c629dcb1451f73e0708a70b064ea /src/kernel
parentee3b7c3b8d1072e2ff424046b2835831b6d57ec5 (diff)
feat: introduce new unit test and CLAUDE.md.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/GfxKit/FB.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/GfxKit/FB.h b/src/kernel/GfxKit/FB.h
index a55a3a5a..a5e866a6 100644
--- a/src/kernel/GfxKit/FB.h
+++ b/src/kernel/GfxKit/FB.h
@@ -34,8 +34,8 @@ struct PACKED FBDevicePacket final {
/// @note The class is derived from the IDevice class.
class FBDeviceInterface NE_DEVICE<FBDevicePacket*> {
public:
- explicit FBDeviceInterface(void (*out)(IDevice* self, FBDevicePacket* out),
- void (*in)(IDevice* self, FBDevicePacket* in));
+ FBDeviceInterface(void (*out)(IDevice* self, FBDevicePacket* out),
+ void (*in)(IDevice* self, FBDevicePacket* in));
virtual ~FBDeviceInterface() override;