Warnings with a new Xcode project using FMDB, SqliteCipher and CocoaPods -
After
I have installed CocoaPods .. and loaded as instructed in the workspace.
I'm getting these warnings that I do not understand, here's an example:
Legumes - CipherDatabaseSync-SQLCipher sqlite.c / Users / admin / Code / CipherDatabaseSync / Pods / SQLCipher / sqlite3.c: 24035: 13: Macro's ambiguous extension 'Max'
I have seen around for a few hours and can be stumped on what I have to do Can someone tell me somewhere in the direction that will give some insight?
Thank you.
sqlite.c file it seems like MIN and MAX are trying to file two different - Must be defined in different areas. For the first time on line, Then the second thing is 214
/ * for macros min / max * / #ifndef min #define min (a, b) ((a) Lt ;? (b)) (a): (b)) #endif / * min * / #ifndef max #define max (a, b) ((a)> gt; b) (a): (B)) #endif / * max * /
8519
/ * ** on line To calculate the macros minimum and maximum of two numbers. * / #define min (a, b) (a) of & lt; (b) (a): (b?)) #define max (a, b) ((a)> (b) (a ): (B)) I have commented that where they define the second time and after all the cleaning and construction of the project all warnings have gone.
Comments
Post a Comment