objective c - Can not compile @import after preprocessing -


i preprocessing code clang before compiling , modules enabled clang converts "#import <float.h>" "@import darwin.c.float;". when try compile preprocessed source, following error: "expected module name after module import" because "float" reserved word. there way disable checking of reserved words in @import?

seeing same thing. can hack around with:

@import darwin.c; 

update found open llvm bug this.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -