From 0d88ce0e3e489db5f62f0097f9461df9ccb89913 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 21 Nov 2025 01:33:15 +0100 Subject: meta: Codebase improvements on CompilerKit. Signed-off-by: Amlal El Mahrouss --- dev/CompilerKit/ErrorOr.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/CompilerKit/ErrorOr.h') diff --git a/dev/CompilerKit/ErrorOr.h b/dev/CompilerKit/ErrorOr.h index 66a90ee..ac42c19 100644 --- a/dev/CompilerKit/ErrorOr.h +++ b/dev/CompilerKit/ErrorOr.h @@ -2,7 +2,7 @@ * ======================================================== * * CompilerKit - * Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under Apache 2.0. + * Copyright (C) 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license. * * ======================================================== */ @@ -15,10 +15,10 @@ /// @brief ErrorOr for CompilerKit. /// =========================================================== /// -#include #include #include #include +#include namespace CompilerKit { using ErrorT = Int32; @@ -47,9 +47,9 @@ class ErrorOr final { private: Ref mRef; - ErrorT mId{0}; + ErrorT mId{0}; }; -using ErrorOrAny = ErrorOr; +using ErrorOrAny = ErrorOr; using ErrorOrString = ErrorOr; } // namespace CompilerKit -- cgit v1.2.3