From b0f666ba15ff2db3178ca54242308e3dd5dd6faa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matteo=20Gm=C3=BCr?= Date: Fri, 1 Nov 2024 09:34:19 +0000 Subject: Fix comment --- arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp b/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp index a028e30..9417c37 100644 --- a/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp +++ b/arch/x86_64/include/arch/memory/allocator/tiny_frame_allocator.hpp @@ -14,7 +14,12 @@ namespace teachos::arch::memory::allocator struct tiny_frame_allocator { /** - * @brief Defaulted constructor. + * @brief Constructor. + * + * @tparam T Type constraint of the allocator, being that is follows the given concept and contains an allocate and + * deallocate method. + * @param allocator Reference to an allocator following the FrameAllocator concept, which is used to allocate + * entries *when a new page table is required. */ template tiny_frame_allocator(T & allocator) -- cgit v1.2.3