| 319 | } |
| 320 | |
| 321 | void MemorySettingsInterface::RemoveSection(const char* section) |
| 322 | { |
| 323 | auto sit = m_sections.find(section); |
| 324 | if (sit == m_sections.end()) |
| 325 | return; |
| 326 | |
| 327 | m_sections.erase(sit); |
| 328 | } |
| 329 | |
| 330 | void MemorySettingsInterface::RemoveEmptySections() |
| 331 | { |