Attempting to compile trunk@711 on OSX 10.8 with Xcode 4.5.2 getting compilation error.
CHMutableDictionary.m:54
Conflicting types for 'createCollectableCFMutableDictionary'
Looking at CHMutableDictionary.h:14
HIDDEN void createCollectableCFMutableDictionary(CFMutableDictionaryRef* dictionary, NSUInteger initialCapacity);
The Macro HIDDEN is discussed here: CHDataStructures.framework won't compile for iOS in Xcode 4 but is about iOS.
I'm guessing a patch is needed to get this to compile on OSX as well?
The
HIDDEN
attribute doesn't affect the compilation here, unlike the other question. It's complaining because the .m file has a__strong
modifier on the first parameter, but it's missing from the .h file. You can resolve it by changing the declaration in the header to: