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

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

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -