From 42f9eaea885fa0744d2138a773702327e26f6b7b Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Tue, 13 Jan 2026 18:40:20 +0100 Subject: x86_64/memory: add missing noexcept --- arch/x86_64/src/memory/scoped_mapping.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86_64/src/memory/scoped_mapping.cpp b/arch/x86_64/src/memory/scoped_mapping.cpp index a86aaed..945183d 100644 --- a/arch/x86_64/src/memory/scoped_mapping.cpp +++ b/arch/x86_64/src/memory/scoped_mapping.cpp @@ -30,7 +30,7 @@ namespace teachos::memory::x86_64 } } - scoped_mapping::~scoped_mapping() + scoped_mapping::~scoped_mapping() noexcept { if (m_mapped) { -- cgit v1.2.3