From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-06-18 01:40:42


David Abrahams wrote:

> > Actually, I mean the shortcut of writing
> >
> > variant=debug,release
> >
> > as opposed to
> >
> > variant=debug variant=release
> >
> > I completely agree that '=' is better than angle brackets.
>
> Oh. I think it's worthwhile in principle. Is there a problem with
> disambiguation?

I actually was browsing code, found that it's complex and though "can't we
ditch this feature".

In fact, some ambiguity is really possible if we try to specify free feature
with ',' in it. But in that case we can just check if feature is free or not,
and declare that comma separated values are not allowed for free features.

> Maybe
>
> variant=debug,=release
> ^
>
> would be better?

Hmm... this might work!

- Volodya