commented out the undefined constants until he can have a chance to make the right call
* bindings/objc/objc_utility.mm:
(KJS::Bindings::objcValueTypeForType): Commented out undefined symbols
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16312
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-09-11 Brady Eidson <beidson@apple.com>
+
+ Build fix - I think Tim's last checkin wasn't tested on Tiger, possibly. I simply
+ commented out the undefined constants until he can have a chance to make the right call
+
+ * bindings/objc/objc_utility.mm:
+ (KJS::Bindings::objcValueTypeForType): Commented out undefined symbols
+
2006-09-11 Timothy Hatcher <timothy@apple.com>
Reviewed by Tim O. and Darin.
for (int i = 0; i < typeLength; ++i) {
char typeChar = type[i];
switch (typeChar) {
- case _C_CONST:
+ //case _C_CONST:
case _C_BYCOPY:
case _C_BYREF:
case _C_ONEWAY:
case _C_ULNG:
objcValueType = ObjcUnsignedLongType;
break;
- case _C_LNG_LNG:
+ /*case _C_LNG_LNG:
objcValueType = ObjcLongLongType;
break;
case _C_ULNG_LNG:
objcValueType = ObjcUnsignedLongLongType;
- break;
+ break;*/
case _C_FLT:
objcValueType = ObjcFloatType;
break;