We use WSDLParser tool to parse our xml content, till Xcode 9.2 everything was ok. As we shifted to Xcode 9.3, we are getting this error in one of parser file "Implicit declaration of function 'xmlFree' is invalid in C99".
Asked
Active
Viewed 1,378 times
0
-
1Possible duplicate of [warning: implicit declaration of function](https://stackoverflow.com/questions/8440816/warning-implicit-declaration-of-function) – MFisherKDX Apr 30 '18 at 05:29
-
Are you sure you've `#include`d or `#import`ed the relevant header files? – Charles Srstka Apr 30 '18 at 05:32
-
yes..but i'm getting this error after updated Xcode 9.3 – Kishore R Apr 30 '18 at 05:39
1 Answers
4
The declaration was moved to globals.h, it should compile with this import:
#import <libxml/globals.h>

MohammadAG
- 465
- 1
- 3
- 9
-
I tried this code. but now it shows error message invalid bitcode signature. How to solve it? – CELIA JOSE Jul 16 '18 at 05:06