diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-01-13 18:40:20 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-01-13 18:40:20 +0100 |
| commit | 42f9eaea885fa0744d2138a773702327e26f6b7b (patch) | |
| tree | 7303981265b3223d37d61e1421d025fa879eb175 /arch/x86_64/src | |
| parent | 5a41c39169e45de71263c2419309244665cfa890 (diff) | |
| download | teachos-42f9eaea885fa0744d2138a773702327e26f6b7b.tar.xz teachos-42f9eaea885fa0744d2138a773702327e26f6b7b.zip | |
x86_64/memory: add missing noexcept
Diffstat (limited to 'arch/x86_64/src')
| -rw-r--r-- | arch/x86_64/src/memory/scoped_mapping.cpp | 2 |
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) { |
