On Thu, May 24, 2007 at 07:32:15PM +0100, José Matos wrote: > On Thursday 24 May 2007 19:24:28 Peter Kümmel wrote: > > { > > Types const t = type(params); > > - return (t == INPUT) or (t == INCLUDE); > > + return (t == INPUT) || (t == INCLUDE);
+ return t == INPUT || t == INCLUDE; Andre' PS: > Why is this? And what does this has to do with merged files? Broken compiler. 'or' is acceptale, even if not used usually. Andre'