ams: remove TYPED_STORAGE() macro in favor of template
This commit is contained in:
@@ -53,6 +53,6 @@ namespace ams::os::impl {
|
||||
}
|
||||
};
|
||||
|
||||
using InternalConditionVariableStorage = TYPED_STORAGE(InternalConditionVariable);
|
||||
using InternalConditionVariableStorage = util::TypedStorage<InternalConditionVariable>;
|
||||
|
||||
}
|
||||
|
||||
@@ -57,6 +57,6 @@ namespace ams::os::impl {
|
||||
}
|
||||
};
|
||||
|
||||
using InternalCriticalSectionStorage = TYPED_STORAGE(InternalCriticalSection);
|
||||
using InternalCriticalSectionStorage = util::TypedStorage<InternalCriticalSection>;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user