settings_common: Use a vector in category linkage
Improve storage requirements.
This commit is contained in:
parent
ffb384463f
commit
2911988b85
2 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ class Linkage {
|
|||
public:
|
||||
explicit Linkage(u32 initial_count = 0);
|
||||
~Linkage();
|
||||
std::map<Category, std::forward_list<BasicSetting*>> by_category{};
|
||||
std::map<Category, std::vector<BasicSetting*>> by_category{};
|
||||
std::vector<std::function<void()>> restore_functions{};
|
||||
u32 count;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue