diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-22 06:16:51 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-22 06:16:51 +0000 |
| commit | ba054441f93a30e2042a71d632a6a5fb04007d15 (patch) | |
| tree | 89b404604e8d68e48dd2d437d018a9c7f24806b1 /include | |
| parent | 7d1d7c5f63791506049cc188740cc4956fc8d14c (diff) | |
| download | teachos-ba054441f93a30e2042a71d632a6a5fb04007d15.tar.xz teachos-ba054441f93a30e2042a71d632a6a5fb04007d15.zip | |
Adjust all briefs
Diffstat (limited to 'include')
| -rw-r--r-- | include/memory/asm_pointer.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/memory/asm_pointer.hpp b/include/memory/asm_pointer.hpp index 9ec2218..71dfcf7 100644 --- a/include/memory/asm_pointer.hpp +++ b/include/memory/asm_pointer.hpp @@ -20,21 +20,25 @@ namespace teachos::memory /** * @brief Construct a new asm_pointer for a given assembly-defined pointer. + * * @param pointer A pointer defined in assembly. */ constexpr asm_pointer(Type *& pointer) : m_pointer{&pointer} { + // Nothing to do } /** * @brief Access the underlying pointer. + * * @return The pointer wrapped by this asm_pointer. */ auto constexpr operator*() -> pointer & { return *m_pointer; } /** * @brief Access the underlying pointer. + * * @return The pointer wrapped by this asm_pointer. */ auto constexpr operator*() const -> pointer const & { return *m_pointer; } |
