mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-24 03:36:52 -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
|
@ -25,7 +25,7 @@ namespace ams::util {
|
|||
class BoundedMap {
|
||||
private:
|
||||
std::array<std::optional<Key>, N> keys;
|
||||
std::array<TYPED_STORAGE(Value), N> values;
|
||||
std::array<TypedStorage<Value>, N> values;
|
||||
private:
|
||||
ALWAYS_INLINE void FreeEntry(size_t i) {
|
||||
this->keys[i].reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue