aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/memory
diff options
context:
space:
mode:
authorFabian Imhof <fabian.imhof@ost.ch>2025-03-09 09:30:01 +0000
committerFabian Imhof <fabian.imhof@ost.ch>2025-03-09 09:30:01 +0000
commit06d5e5872838bd1528493b62b4dc28d44b54aa47 (patch)
treea27000afb5e704138bb88374878a060ef523cd63 /arch/x86_64/src/memory
parent051307f49f4cdfb86c527a475ab21feea4a664d7 (diff)
downloadteachos-06d5e5872838bd1528493b62b4dc28d44b54aa47.tar.xz
teachos-06d5e5872838bd1528493b62b4dc28d44b54aa47.zip
add doxygen comments to shared and unique pointer
Diffstat (limited to 'arch/x86_64/src/memory')
-rw-r--r--arch/x86_64/src/memory/main.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/x86_64/src/memory/main.cpp b/arch/x86_64/src/memory/main.cpp
index 08308db..15e89c0 100644
--- a/arch/x86_64/src/memory/main.cpp
+++ b/arch/x86_64/src/memory/main.cpp
@@ -52,11 +52,5 @@ namespace teachos::arch::memory
remap_heap(allocator, active_table);
video::vga::text::write("Heap remapping successful", video::vga::text::common_attributes::green_on_black);
video::vga::text::newline();
-
- auto test2 = stl::make_unique<int>(0);
- auto test3 = stl::make_shared<int>(0);
- if (test2 && test3)
- {
- }
}
-} // namespace teachos::arch::memory
+} // namespace teachos::arch::memory \ No newline at end of file