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/include | |
| parent | f4ab51df7f9ed783dbcfbecffc0a9d919c501135 (diff) | |
| download | teachos-6eec9c34a83fc5c0d93bc485c2ee0252824c2201.tar.xz teachos-6eec9c34a83fc5c0d93bc485c2ee0252824c2201.zip | |
Fix missing default constructor.
Diffstat (limited to 'arch/x86_64/include')
| -rw-r--r-- | arch/x86_64/include/arch/memory/paging/page_entry.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86_64/include/arch/memory/paging/page_entry.hpp b/arch/x86_64/include/arch/memory/paging/page_entry.hpp index ba972d6..bfb0184 100644 --- a/arch/x86_64/include/arch/memory/paging/page_entry.hpp +++ b/arch/x86_64/include/arch/memory/paging/page_entry.hpp @@ -35,6 +35,11 @@ namespace teachos::arch::memory::paging }; /** + * @brief Defaulted constructor. + */ + entry() = default; + + /** * @brief Creates a new entry object from a 64bit address. Should follow the scheme where bit index 12 - 51 are the * actual address and the other bits are flags. * |
