diff options
Diffstat (limited to 'src/common/page_table.h')
| -rw-r--r-- | src/common/page_table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h index fe254d7ae..82d91e9f3 100644 --- a/src/common/page_table.h +++ b/src/common/page_table.h | |||
| @@ -99,9 +99,9 @@ struct PageTable { | |||
| 99 | PageTable(PageTable&&) noexcept = default; | 99 | PageTable(PageTable&&) noexcept = default; |
| 100 | PageTable& operator=(PageTable&&) noexcept = default; | 100 | PageTable& operator=(PageTable&&) noexcept = default; |
| 101 | 101 | ||
| 102 | bool BeginTraversal(TraversalEntry* out_entry, TraversalContext* out_context, | 102 | bool BeginTraversal(TraversalEntry& out_entry, TraversalContext& out_context, |
| 103 | u64 address) const; | 103 | u64 address) const; |
| 104 | bool ContinueTraversal(TraversalEntry* out_entry, TraversalContext* context) const; | 104 | bool ContinueTraversal(TraversalEntry& out_entry, TraversalContext& context) const; |
| 105 | 105 | ||
| 106 | /** | 106 | /** |
| 107 | * Resizes the page table to be able to accommodate enough pages within | 107 | * Resizes the page table to be able to accommodate enough pages within |