From ceabd82ac8e796249feacf39c836034ed5e11c6d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 29 Nov 2025 15:01:34 -0500 Subject: chore: source code review and fixes. Signed-off-by: Amlal El Mahrouss --- src/kernel/NeKit/Function.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/kernel/NeKit/Function.h') diff --git a/src/kernel/NeKit/Function.h b/src/kernel/NeKit/Function.h index 70242bc3..5dea8f85 100644 --- a/src/kernel/NeKit/Function.h +++ b/src/kernel/NeKit/Function.h @@ -41,11 +41,9 @@ class Function final { bool operator!() { return !fFn; } private: - T(*fFn) - (Args... args){nullptr}; + T (*fFn)(Args... args){nullptr}; }; template using FunctionOr = ErrorOr>; } // namespace Kernel - -- cgit v1.2.3