mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Remove redundant Config prefix from ConfigInfo/ConfigLocation
Both structs are already in the Config namespace.
This commit is contained in:
parent
66c91b9dfb
commit
19da101164
34 changed files with 543 additions and 577 deletions
|
@ -49,7 +49,7 @@ public:
|
|||
if (system)
|
||||
{
|
||||
m_values.emplace_back(
|
||||
Config::ConfigLocation{std::move(*system), std::move(section), std::move(key)},
|
||||
Config::Location{std::move(*system), std::move(section), std::move(key)},
|
||||
std::move(value));
|
||||
}
|
||||
}
|
||||
|
@ -69,7 +69,7 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
std::list<std::tuple<Config::ConfigLocation, std::string>> m_values;
|
||||
std::list<std::tuple<Config::Location, std::string>> m_values;
|
||||
};
|
||||
|
||||
std::unique_ptr<optparse::OptionParser> CreateParser(ParserOptions options)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue