On 11 Jan 2010, at 19:22, Phillip Kinsley wrote: > ETClassMirror.m:224: warning: passing argument 1 of > 'stringWithUTF8String:' makes pointer from integer without a cast
This error is complete nonsense. The class_getName() function returns const char* and the stringWithUTF8String: method accepts const char*. Is this the only warning that you are getting? If, for some reason, it can't find the prototype for this function, then the implicit definition would return int, but that is not the error that you are reporting. I suggest that you install a newer gcc from ports. The one that you have in the base system is completely broken. David -- Sent from my Cray X1 _______________________________________________ Etoile-discuss mailing list [email protected] https://mail.gna.org/listinfo/etoile-discuss
