Am 30.11.2009 11:07, schrieb Matthias Melcher:
>> Fl.cxx: In static member function 'static int Fl::handle(int, Fl_Window*)':
>> Fl.cxx:715: warning: suggest parentheses around '&&' within '||'
>> In file included from Fl.cxx:1214:
> 
> Harmless

I think, it is highly recommended to take care of this warning.

You will get it i.e. when written
"ptr_Char!= 0 &&  *ptr_Char== 'a' || *ptr_Char== 'b'",

but ment
"ptr_Char!= 0 && (*ptr_Char== 'a' || *ptr_Char== 'b')".
_______________________________________________
fltk mailing list
fltk@easysw.com
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to