Changeset 327
- Timestamp:
- 09/16/08 04:38:12 (4 months ago)
- Files:
-
- trunk/cocoa/JRLog/JRLog.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cocoa/JRLog/JRLog.m
r240 r327 227 227 + (void)load { 228 228 if (!gClassLoggingLevels) { 229 gClassLoggingLevels = NSCreateMapTable(NSIntMapKeyCallBacks, NSIntMapValueCallBacks, 32); 229 #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5 230 gClassLoggingLevels = NSCreateMapTable(NSIntMapKeyCallBacks, NSIntMapValueCallBacks, 32); 231 #else 232 gClassLoggingLevels = NSCreateMapTable(NSIntegerMapKeyCallBacks, NSIntegerMapValueCallBacks, 32); 233 #endif 230 234 } 231 235 }
