1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

Ooops: - xpath.h: the comp field must be added at the end to avoid killing

Ooops:
- xpath.h: the comp field must be added at the end to avoid
  killing binary compat.
Daniel
This commit is contained in:
Daniel Veillard
2001-03-19 00:01:07 +00:00
parent 9e7160d45a
commit d007d6c53e
3 changed files with 11 additions and 4 deletions

View File

@@ -237,13 +237,14 @@ struct _xmlXPathParserContext {
int error; /* error code */
xmlXPathCompExprPtr comp; /* the precompiled expression */
xmlXPathContextPtr context; /* the evaluation context */
xmlXPathObjectPtr value; /* the current value */
int valueNr; /* number of values stacked */
int valueMax; /* max number of values stacked */
xmlXPathObjectPtr *valueTab; /* stack of values */
xmlXPathCompExprPtr comp; /* the precompiled expression */
};
/*