We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Building the latest version (e4cebc7) on OSX 10.10.1 with Homebrew/Xcode/Gcc throws this:
parsley.c:753:6: error: conflicting types for '__parsley_recurse' void __parsley_recurse(contextPtr context) {
I just fixed by sticking a definition in parsley.h but I'm guessing from the name that it might not be the way you intended.
diff --git a/parsley.h b/parsley.h index ac927c6..1167185 100644 --- a/parsley.h +++ b/parsley.h @@ -71,6 +71,7 @@ enum { typedef parsley_context * contextPtr;
void parsed_parsley_free(parsedParsleyPtr); +void __parsley_recurse(contextPtr context);
void killDefaultNS(xmlDocPtr doc); void parsley_free(parsleyPtr); @@ -84,4 +85,4 @@ void parsleyXsltError(void * ctx, const char * msg, ...); void parsley_set_user_agent(char const *agent); static contextPtr parsley_parsing_context;
Thanks again for open-sourcing this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Building the latest version (e4cebc7) on OSX 10.10.1 with Homebrew/Xcode/Gcc throws this:
I just fixed by sticking a definition in parsley.h but I'm guessing from the name that it might not be the way you intended.
diff --git a/parsley.h b/parsley.h
index ac927c6..1167185 100644
--- a/parsley.h
+++ b/parsley.h
@@ -71,6 +71,7 @@ enum {
typedef parsley_context * contextPtr;
void parsed_parsley_free(parsedParsleyPtr);
+void __parsley_recurse(contextPtr context);
void killDefaultNS(xmlDocPtr doc);
void parsley_free(parsleyPtr);
@@ -84,4 +85,4 @@ void parsleyXsltError(void * ctx, const char * msg, ...);
void parsley_set_user_agent(char const *agent);
static contextPtr parsley_parsing_context;
Thanks again for open-sourcing this.
The text was updated successfully, but these errors were encountered: