mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
remove unused wgetopt() method found by linting
This commit is contained in:
parent
bbf0007c46
commit
3f1fc332e7
2 changed files with 0 additions and 9 deletions
|
@ -573,14 +573,6 @@ int wgetopter_t::_wgetopt_internal(int argc, wchar_t **argv, const wchar_t *opts
|
|||
}
|
||||
}
|
||||
|
||||
int wgetopter_t::wgetopt(int argc, wchar_t **argv, const wchar_t *optstring)
|
||||
{
|
||||
return _wgetopt_internal(argc, argv, optstring,
|
||||
(const struct woption *) 0,
|
||||
(int *) 0,
|
||||
0);
|
||||
}
|
||||
|
||||
int wgetopter_t::wgetopt_long(int argc, wchar_t **argv, const wchar_t *options, const struct woption *long_options, int *opt_index)
|
||||
{
|
||||
return _wgetopt_internal(argc, argv, options, long_options, opt_index, 0);
|
||||
|
|
|
@ -147,7 +147,6 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
int wgetopt(int argc, wchar_t **argv, const wchar_t *optstring);
|
||||
int wgetopt_long(int argc, wchar_t **argv, const wchar_t *options, const struct woption *long_options, int *opt_index);
|
||||
int wgetopt_long_only(int argc, wchar_t **argv, const wchar_t *options, const struct woption *long_options, int *opt_index);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue