Remove empty string initializer.
The empty string caused the vector to have one element which caused the test at line 2041 to always fail.
This commit is contained in:
parent
287d1e39e0
commit
a70e63c680
@ -1281,7 +1281,7 @@ namespace cxxopts
|
||||
}
|
||||
|
||||
std::string
|
||||
help(const std::vector<std::string>& groups = {""}) const;
|
||||
help(const std::vector<std::string>& groups = {}) const;
|
||||
|
||||
const std::vector<std::string>
|
||||
groups() const;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user