1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

make sure ATTRIBUTE_UNUSED is always put after the attribute declaration,

* xinclude.c xmlschemas.c xmlschemastypes.c xpath.c: make sure
  ATTRIBUTE_UNUSED is always put after the attribute declaration,
  not before
Daniel
This commit is contained in:
Daniel Veillard
2002-09-26 09:47:36 +00:00
parent d4cb1e8a5f
commit dda8f1ba9f
5 changed files with 20 additions and 14 deletions

View File

@ -1284,8 +1284,8 @@ static const char *xmlXPathErrorMessages[] = {
* Formats an error message.
*/
void
xmlXPatherror(xmlXPathParserContextPtr ctxt, ATTRIBUTE_UNUSED const char *file,
ATTRIBUTE_UNUSED int line, int no) {
xmlXPatherror(xmlXPathParserContextPtr ctxt, const char *file ATTRIBUTE_UNUSED,
int line ATTRIBUTE_UNUSED, int no) {
int n;
const xmlChar *cur;
const xmlChar *base;