mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
Memory leak fixed
This commit is contained in:
parent
8e4ad3dfcb
commit
717d99795c
2 changed files with 2 additions and 17 deletions
|
@ -163,16 +163,3 @@ std::string config_context_t::to_string() const
|
|||
|
||||
return result.str();
|
||||
}
|
||||
|
||||
void config_context_t::add_group(const std::string& name)
|
||||
{
|
||||
new group(this, name);
|
||||
}
|
||||
|
||||
config_context_t::group& config_context_t::get_group(const std::string& name)
|
||||
{
|
||||
if (!m_groups[name])
|
||||
add_group(name);
|
||||
|
||||
return *m_groups[name];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue