Fabien Costantini wrote:
> Yes I'm afraid I do,
> look at the diff file below needed for fixing current svn ...
> - if (c) return fl_text_extents(c, strlen(c), dx, dy, w, h);
> [..]
> + if (c) fl_text_extents(c, strlen(c), dx, dy, w, h);
Interesting.. if I gather the gist of the patch correctly,
it looks like the change is to avoid having the void function
return() a function that returns a void.
Which seems to compile OK with 'g++ -Wall' on my linux
systems, eg. no compile errors for this:
void foo() { }
void bar() {
return(foo()); // OK with 'g++ -Wall'
}
Is that maybe no longer allowed on the newer windows compilers?
_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev