I'm seeing two compile errors in the Objective-C header that Xcode generates for my swift class. I see this using Xcode 6.3.2 and 7.0 beta.
/Users/marc/Library/Developer/Xcode/DerivedData/VEO_iOS-agqlvygcyfcdvadpahyaxsamxmsp/Build/Intermediates/VEO_iPad.build/Debug-iphonesimulator/VEO_iPad.build/DerivedSources/VEO_iPad-swift.h:17:24: Typedef redefinition with different types ('uint_least16_t' (aka 'unsigned short') vs 'char16_t')
/Users/marc/Library/Developer/Xcode/DerivedData/VEO_iOS-agqlvygcyfcdvadpahyaxsamxmsp/Build/Intermediates/VEO_iPad.build/Debug-iphonesimulator/VEO_iPad.build/DerivedSources/VEO_iPad-swift.h:18:24: Typedef redefinition with different types ('uint_least32_t' (aka 'unsigned int') vs 'char32_t')
The problem is that uint_least16_t and uint_least32_t are defined in my generated *-Swift.h header and also in a file called __config.
Any ideas?
TIA,
Marc