| 165 | } |
| 166 | |
| 167 | static void store_associations(const unordered_map<int32_t, vector<int32_t>> & data, const char * suffix) { |
| 168 | get_config(suffix, true).set_str(serialize_associations(data)); |
| 169 | } |
| 170 | |
| 171 | static void load_associations(unordered_map<int32_t, vector<int32_t>> * data, const char * suffix) { |
| 172 | PersistentDataItem c = get_config(suffix); |
no test coverage detected