On Sat, Apr 26, 2008 at 7:39 PM, chromatic <[EMAIL PROTECTED]> wrote: > On Friday 25 April 2008 10:50:24 Will Coleda wrote: > > > Miscellaneous build warnings that need to be cleaned up. > > > > src/key.c:306: warning: switch missing default case > > Fixed in 27195. > > > > compilers/imcc/imclexer.c:4288: warning: switch missing default case > > compilers/imcc/imclexer.c:4447: warning: comparison between signed and > > unsigned compilers/imcc/imclexer.c:4615: warning: switch missing default > > case > > These are all in generated code. I suspect we're not going to clear these up > without patching lex/flex or writing a filter for post-generation. You can > quote me on this: yuck. > > -- c >
In my experience, compiling a flex-generated lexer with -Wall flag on msvc should not emit these warnings in a normal situation; in other words, I'm fairly sure (but not absolutely sure) that this can be fixed without a filter. kjs