@@ -33,10 +33,11 @@ static pthread_key_t first_key, last_key; #else static DWORD first_key, last_key; #endif +#ifndef _WIN32 /* Not used on Win32 yet */ static void release_all(void *list) { #ifndef _WIN32 void *first = pthread_getspecific(first_key); @@ -45,10 +46,11 @@ #endif if (first != NULL) [(OFAutoreleasePool*)first release]; } +#endif @implementation OFAutoreleasePool + (void)initialize { if (self != [OFAutoreleasePool class])