From: Vladimir Prus (ghost_at_[hidden])
Date: 2007-03-08 09:47:03


Aljaz wrote:

> Hey Vladimir
>
> I attached the whole code that does a crash..
> Please take a look and let me know

        ("timeout,to", boost::program_options::value(&_timeout)->default_value(3), "desc 2");

Here, "to" is invalid. The part after "," is supposed to be short option name,
which is supposed to be a single letter. It is presently not
supported to have several long option spellings.

- Volodya