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/modules/CoreGfx/CoreAccess.h | 4 ++-- src/modules/CoreGfx/CoreGfx.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules') diff --git a/src/modules/CoreGfx/CoreAccess.h b/src/modules/CoreGfx/CoreAccess.h index 942a1ad5..c0ebf255 100644 --- a/src/modules/CoreGfx/CoreAccess.h +++ b/src/modules/CoreGfx/CoreAccess.h @@ -24,9 +24,9 @@ class CGAccessibilty final { public: NE_COPY_DELETE(CGAccessibilty) - static UInt64 Width() noexcept { return kHandoverHeader->f_GOP.f_Width; } + static UInt64 Width() { return kHandoverHeader->f_GOP.f_Width; } - static UInt64 Height() noexcept { return kHandoverHeader->f_GOP.f_Height; } + static UInt64 Height() { return kHandoverHeader->f_GOP.f_Height; } }; } // namespace FB diff --git a/src/modules/CoreGfx/CoreGfx.h b/src/modules/CoreGfx/CoreGfx.h index e1bfe462..c217fbe3 100644 --- a/src/modules/CoreGfx/CoreGfx.h +++ b/src/modules/CoreGfx/CoreGfx.h @@ -111,7 +111,7 @@ #endif // ifndef CORE_GFX_ACCESSIBILITY_H namespace FB { -inline Void cg_clear_video() noexcept { +inline Void cg_clear_video() { FBDrawInRegion(cg_get_clear_clr(), FB::CGAccessibilty::Height(), FB::CGAccessibilty::Width(), 0, 0); } -- cgit v1.2.3