On Tue, Jul 8, 2008 at 11:45 AM, Johannes Wienke <[EMAIL PROTECTED]> wrote: > Ok, nevertheless I use the approach with the pxi files for all other > modules and definitions in my program and only Gimage.pxi generates > these warnings. Furthermore only some of the functions have those > warnings, not all in the file.
I suspect that with multiple inclusions, either iwType or iwImage (or both) defines a "new" type each time it's loaded. So the first declaration doesn't match the second declaration, because it's got "different" argument types. If you look at which functions have warnings: is it, perhaps, only the functions that take an argument of type iwType? If not, is there some other pattern of that sort in which functions have warnings? Carl _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
