From: Troy G. <tro...@gm...> - 2010-08-11 11:26:27
|
I get compilation errors when I take the java classes (ones generated to objective c) from SVN and try to compile in xCode. The primary one I get is on lines like the following: (java_util_Iterator*) iterator__; // actual line from java_util_ArrayList.h; compile error is Expected ')' before java_util_Iterator. If I change the above line to the following it compiles fine. (id<java_util_Iterator>) iterator__; //replace the above line with this Am I missing something on the included Java classes out of SVN? I would assume these would compile as-is. Thanks in advance. |