1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-09 04:58:16 +03:00

parser: Undeprecate some xmlParserInput members

This commit is contained in:
Nick Wellnhofer 2024-06-21 18:25:11 +02:00
parent 1228b4e0e7
commit f9c33a5519

View File

@ -85,9 +85,9 @@ struct _xmlParserInput {
/* unused */
int length XML_DEPRECATED_MEMBER;
/* Current line */
int line XML_DEPRECATED_MEMBER;
int line;
/* Current column */
int col XML_DEPRECATED_MEMBER;
int col;
/* How many xmlChars already consumed */
unsigned long consumed XML_DEPRECATED_MEMBER;
/* function to deallocate the base */