mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-21 02:15:07 -04:00
ams: remove TYPED_STORAGE() macro in favor of template
This commit is contained in:
parent
8d9174b227
commit
aff0da9427
31 changed files with 55 additions and 57 deletions
|
@ -78,7 +78,7 @@ namespace ams::pm::impl {
|
|||
NON_MOVEABLE(ProcessInfoAllocator);
|
||||
static_assert(MaxProcessInfos >= 0x40, "MaxProcessInfos is too small.");
|
||||
private:
|
||||
TYPED_STORAGE(ProcessInfo) process_info_storages[MaxProcessInfos];
|
||||
util::TypedStorage<ProcessInfo> process_info_storages[MaxProcessInfos];
|
||||
bool process_info_allocated[MaxProcessInfos];
|
||||
os::Mutex lock;
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue