10000 Remove unused soap macros · php/php-src@9e01337 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9e01337

Browse files
committed
Remove unused soap macros
1 parent a63d0a4 commit 9e01337

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

ext/soap/php_xml.h

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,6 @@ xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns
4141
xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns);
4242
void parse_namespace(const xmlChar *inval, const char **value, char **namespace);
4343

44-
#define FOREACHATTRNODE(n,c,i) FOREACHATTRNODEEX(n,c,NULL,i)
45-
#define FOREACHATTRNODEEX(n,c,ns,i) \
46-
do { \
47-
if (n == NULL) { \
48-
break; \
49-
} \
50-
if (c) { \
51-
i = get_attribute_ex(n,c,ns); \
52-
} else { \
53-
i = n; \
54-
} \
55-
if (i != NULL) { \
56-
n = i;
57-
5844
#define FOREACHNODE(n,c,i) FOREACHNODEEX(n,c,NULL,i)
5945
#define FOREACHNODEEX(n,c,ns,i) \
6046
do { \

0 commit comments

Comments
 (0)
0