You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I could have misunderstood how to use clipp properly but I have found using multiple optional numeric values with leading dot leads to incorrect parsing, for example:
double a, b;
auto FOO = (command("foo").set(selected,mode::FOO),
opt_value("a", a) & opt_value("b", b));
gives the correct values when called as "> foo 0.1 0.2", but when called as "> foo .1 .2" this results in