public
Description: The Nu programming language.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nu.git
ifdef-ed out a few functions that duplicate functions in the iPhone 
runtime.

Notably, class_getName() was failing on the iPhone.
There are probably other issues in objc/objc_runtime.m
timburks (author)
Wed Apr 23 22:43:37 -0700 2008
commit  19334d34bc74c85067908ea123e94d5a16fd7131
tree    3ae120b9cf1b5da979d4e879f88e4ae19835240d
parent  c7c27d10a500f49c59f58587d5683b7736eefc85
...
493
494
495
496
 
497
498
499
...
507
508
509
 
510
511
512
...
493
494
495
 
496
497
498
499
...
507
508
509
510
511
512
513
0
@@ -493,7 +493,7 @@ void objc_registerClassPair(Class cls)
0
 {
0
     objc_addClass(cls);
0
 }
0
-#endif
0
+
0
 Class object_getClass(id obj)
0
 {
0
 #ifdef DARWIN
0
@@ -507,6 +507,7 @@ const char *class_getName(Class c)
0
 {
0
     return c->name;
0
 }
0
+#endif
0
 
0
 #ifdef DARWIN
0
 void method_exchangeImplementations(Method method1, Method method2)

Comments

    No one has commented yet.