Merge 969ee85494 into merged_master (Bitcoin PR #18662)

This commit is contained in:
Andrew Poelstra 2020-11-26 01:08:22 +00:00
commit e6c67f94cc
3 changed files with 29 additions and 28 deletions

View file

@ -232,10 +232,11 @@ static bool CheckValid(const std::string& key, const util::SettingsValue& val, u
return true;
}
ArgsManager::ArgsManager()
{
// nothing to do
}
// Define default constructor and destructor that are not inline, so code instantiating this class doesn't need to
// #include class definitions for all members.
// For example, m_settings has an internal dependency on univalue.
ArgsManager::ArgsManager() {}
ArgsManager::~ArgsManager() {}
const std::set<std::string> ArgsManager::GetUnsuitableSectionOnlyArgs() const
{