On 03/03/2013 11:51 PM, Akim Demaille wrote: > I fail to see why one would like to depend > on a token number during preprocessing
Unfortunately this sort of thing is more common than
it might appear at first glance. E.g., people do things
like this:
switch (val)
{
case PLUS:
#if PLUS != ADD
case ADD:
#endif
... code to handle PLUS and ADD...
}
Offhand I don't know of any specific examples of stuff
like that, but I wouldn't be surprised if it existed.
