mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Fix clang-tidy readability-const-return-type violations
This commit is contained in:
parent
e1bf5470f9
commit
fa451d4b60
25 changed files with 54 additions and 52 deletions
|
|
@ -242,7 +242,7 @@ static std::optional<util::SettingsValue> InterpretValue(const KeyInfo& key, con
|
|||
ArgsManager::ArgsManager() = default;
|
||||
ArgsManager::~ArgsManager() = default;
|
||||
|
||||
const std::set<std::string> ArgsManager::GetUnsuitableSectionOnlyArgs() const
|
||||
std::set<std::string> ArgsManager::GetUnsuitableSectionOnlyArgs() const
|
||||
{
|
||||
std::set<std::string> unsuitables;
|
||||
|
||||
|
|
@ -262,7 +262,7 @@ const std::set<std::string> ArgsManager::GetUnsuitableSectionOnlyArgs() const
|
|||
return unsuitables;
|
||||
}
|
||||
|
||||
const std::list<SectionInfo> ArgsManager::GetUnrecognizedSections() const
|
||||
std::list<SectionInfo> ArgsManager::GetUnrecognizedSections() const
|
||||
{
|
||||
// Section names to be recognized in the config file.
|
||||
static const std::set<std::string> available_sections{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue