On Sat, 26 Feb 2011, Bill Janssen wrote:
I'm seeing a lot of errors of the form:
build/_GoodStuff/__wrap07__.cpp:57522: error: ?class
com::parc::goodstuff::t_FooIterator? has no member named ?parameters?
Apparently relating to code like this:
if (!parseArgs(args, ""))
{
OBJ_CALL(result = self->object.nextElement());
return self->parameters[0] != NULL ? \
wrapType(self->parameters[0], result.this$) : \
java::lang::t_Object::wrap_Object(result);
}
I look in the header files, and, sure enough, there's no "parameters"
field to be found.
FooIterator is pretty complicated; it extends an abstract class, and
implements several interfaces as well. I wonder if something is getting
mixed up about where the "parameters" member should be emitted.
Maybe you found an unrelated bug ?
It may be simplest if you can send me the source file for this class as well
as a small jar file I can use to reproduce this ?
Andi..