+2005-07-20 Helge Hess <helge.hess@skyrix.com>
+
+ * TableCallbacks.m: fixed a compilation issues with either gcc 4.0.1
+ or Sarge (v4.5.20)
+
2005-05-06 Helge Hess <helge.hess@opengroupware.org>
* libxmlSAXDriver.m: minor improvements to error messages (v4.5.19)
}
static void __retain(void *table, const void *anObject) {}
-static void __release(void *table, void *anObject) {}
+static void TableCallbacksRelease(void *table, void *anObject) {}
static NSString *__describe(void *table, const void *anObject) {
return [NSString stringWithFormat:@"%p", anObject];
(unsigned(*)(NSMapTable *, const void *))__hashCString,
(BOOL(*)(NSMapTable *, const void *, const void *))__compareCString,
(void (*)(NSMapTable *, const void *anObject))__retain,
- (void (*)(NSMapTable *, void *anObject))__release,
+ (void (*)(NSMapTable *, void *anObject))TableCallbacksRelease,
(NSString *(*)(NSMapTable *, const void *))__describe,
(const void *)NULL
};