diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-26 11:57:11 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-26 11:57:11 +0000 |
| commit | 6eec9c34a83fc5c0d93bc485c2ee0252824c2201 (patch) | |
| tree | 558ffe9197859b3c4d38b3817095088e541eefa9 /arch/x86_64/src/memory/paging | |
| parent | f4ab51df7f9ed783dbcfbecffc0a9d919c501135 (diff) | |
| download | teachos-6eec9c34a83fc5c0d93bc485c2ee0252824c2201.tar.xz teachos-6eec9c34a83fc5c0d93bc485c2ee0252824c2201.zip | |
Fix missing default constructor.
Diffstat (limited to 'arch/x86_64/src/memory/paging')
| -rw-r--r-- | arch/x86_64/src/memory/paging/page_table.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86_64/src/memory/paging/page_table.cpp b/arch/x86_64/src/memory/paging/page_table.cpp index 4747e0b..c9b4a37 100644 --- a/arch/x86_64/src/memory/paging/page_table.cpp +++ b/arch/x86_64/src/memory/paging/page_table.cpp @@ -85,8 +85,7 @@ namespace teachos::arch::memory::paging // could be incredibly hard to debug later. exception_handling::assert(index < PAGE_TABLE_ENTRY_COUNT, "[Page Table] Index out of bounds"); // TODO: This section seems to return completly invalid entry, debugger doesn't even show a value? Revert once fixed - auto & entry = entries[index]; - return entry; + return entries[index]; } auto page_table::next_table_address(std::size_t table_index) -> std::optional<std::size_t> |
