Remove unused mkFlag1
This commit is contained in:
parent
1d4954e73e
commit
29a445840a
|
@ -143,19 +143,6 @@ public:
|
||||||
/* Helper functions for constructing flags / positional
|
/* Helper functions for constructing flags / positional
|
||||||
arguments. */
|
arguments. */
|
||||||
|
|
||||||
void mkFlag1(char shortName, const std::string & longName,
|
|
||||||
const std::string & label, const std::string & description,
|
|
||||||
std::function<void(std::string)> fun)
|
|
||||||
{
|
|
||||||
addFlag({
|
|
||||||
.longName = longName,
|
|
||||||
.shortName = shortName,
|
|
||||||
.description = description,
|
|
||||||
.labels = {label},
|
|
||||||
.handler = {[=](std::string s) { fun(s); }}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
void mkFlag(char shortName, const std::string & name,
|
void mkFlag(char shortName, const std::string & name,
|
||||||
const std::string & description, bool * dest)
|
const std::string & description, bool * dest)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue