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());