[clang-tidy] remove redundant const
Found with readability-const-return-type Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
7a07ef4d21
commit
7539a2e110
@ -1377,7 +1377,7 @@ namespace cxxopts
|
||||
std::string
|
||||
help(const std::vector<std::string>& groups = {}) const;
|
||||
|
||||
const std::vector<std::string>
|
||||
std::vector<std::string>
|
||||
groups() const;
|
||||
|
||||
const HelpGroupDetails&
|
||||
@ -2164,7 +2164,7 @@ Options::help(const std::vector<std::string>& help_groups) const
|
||||
}
|
||||
|
||||
inline
|
||||
const std::vector<std::string>
|
||||
std::vector<std::string>
|
||||
Options::groups() const
|
||||
{
|
||||
std::vector<std::string> g;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user