aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-01-13 18:40:20 +0100
committerFelix Morgner <felix.morgner@ost.ch>2026-01-13 18:40:20 +0100
commit42f9eaea885fa0744d2138a773702327e26f6b7b (patch)
tree7303981265b3223d37d61e1421d025fa879eb175
parent5a41c39169e45de71263c2419309244665cfa890 (diff)
downloadteachos-42f9eaea885fa0744d2138a773702327e26f6b7b.tar.xz
teachos-42f9eaea885fa0744d2138a773702327e26f6b7b.zip
x86_64/memory: add missing noexcept
-rw-r--r--arch/x86_64/src/memory/scoped_mapping.cpp2
1 files changed, 1 insertions, 1 deletions
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)
{