From 24eef96b159b1d56b113f7e73ff38e5915c71297 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 20 Nov 2020 17:50:05 -0800 Subject: [PATCH] os: remove completed TODO --- libraries/libstratosphere/source/os/os_transfer_memory_api.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libraries/libstratosphere/source/os/os_transfer_memory_api.cpp b/libraries/libstratosphere/source/os/os_transfer_memory_api.cpp index e2b438bcc..c6b23be45 100644 --- a/libraries/libstratosphere/source/os/os_transfer_memory_api.cpp +++ b/libraries/libstratosphere/source/os/os_transfer_memory_api.cpp @@ -132,7 +132,6 @@ namespace ams::os { /* Try to map up to 64 times. */ for (int i = 0; i < 64; ++i) { /* Reserve space to map the memory. */ - /* TODO: os::AslrSpaceManager */ void *map_address = impl::GetAslrSpaceManager().AllocateSpace(tmem->size); R_UNLESS(map_address != nullptr, os::ResultOutOfAddressSpace());