Browse Source

Remove undocumented variable in getopt().

wip/core-clipp
Sam Hocevar 4 years ago
parent
commit
4bad4a9cdf
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      include/lol/base/getopt.h

+ 0
- 4
include/lol/base/getopt.h View File

@@ -56,8 +56,6 @@ public:


int parse() int parse()
{ {
int longindex = 0; // FIXME: what is this?

/* XXX: this getopt_long implementation should not be trusted for other /* XXX: this getopt_long implementation should not be trusted for other
* applications without any serious peer reviewing. It “just works” with * applications without any serious peer reviewing. It “just works” with
* zzuf and a few libcaca programs but may fail miserably in other * zzuf and a few libcaca programs but may fail miserably in other
@@ -123,12 +121,10 @@ public:
case '=': case '=':
if (!m_opts[i].has_arg) if (!m_opts[i].has_arg)
goto bad_opt; goto bad_opt;
longindex = i;
++this->index; ++this->index;
this->arg = flag + 2 + l + 1; this->arg = flag + 2 + l + 1;
return m_opts[i].val; return m_opts[i].val;
case '\0': case '\0':
longindex = i;
++this->index; ++this->index;
if (m_opts[i].has_arg) if (m_opts[i].has_arg)
{ {


Loading…
Cancel
Save