Remove redundant Config prefix from ConfigInfo/ConfigLocation

Both structs are already in the Config namespace.
This commit is contained in:
Léo Lam
2020-05-02 14:39:40 +02:00
parent 66c91b9dfb
commit 19da101164
34 changed files with 543 additions and 577 deletions

View File

@ -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)