| 310 | } |
| 311 | |
| 312 | void MemorySettingsInterface::ClearSection(const char* section) |
| 313 | { |
| 314 | auto sit = m_sections.find(section); |
| 315 | if (sit == m_sections.end()) |
| 316 | return; |
| 317 | |
| 318 | m_sections.erase(sit); |
| 319 | } |
| 320 | |
| 321 | void MemorySettingsInterface::RemoveSection(const char* section) |
| 322 | { |