lemon/arg_parser.cc
changeset 88 18444049848b
parent 85 3453d20a82cd
child 128 7cd965d2257f
     1.1 --- a/lemon/arg_parser.cc	Thu Jan 24 17:25:31 2008 +0000
     1.2 +++ b/lemon/arg_parser.cc	Sun Mar 16 01:39:19 2008 +0100
     1.3 @@ -69,7 +69,6 @@
     1.4      p.help=help;
     1.5      p.type=INTEGER;
     1.6      p.mandatory=obl;
     1.7 -    p.self_delete=true;
     1.8      _opts[name]=p;
     1.9      return *this;
    1.10    }
    1.11 @@ -99,9 +98,6 @@
    1.12      p.type=BOOL;
    1.13      p.mandatory=obl;
    1.14      _opts[name]=p;
    1.15 -
    1.16 -    value = false;
    1.17 -
    1.18      return *this;
    1.19    }
    1.20