Remove XERO_ITER_EL

This commit is contained in:
phosit
2026-09-07 18:06:58 +02:00
parent f8ea2c0d49
commit 7bcee2ea0e
16 changed files with 52 additions and 55 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ void XMLWriter_File::ElementXMB(const XMBData& xmb, XMBElement el)
for (XMBAttribute attr : el.GetAttributes())
writer.Attribute(xmb.GetAttributeString(attr.Name), attr.Value);
XERO_ITER_EL(el, child)
for (XMBElement child : el.GetChildNodes())
ElementXMB(xmb, child);
}
-3
View File
@@ -91,7 +91,4 @@ private:
#define _XERO_CHILDREN _XERO_MAKE_UID1__(_children_, __LINE__)
#define _XERO_I _XERO_MAKE_UID1__(_i_, __LINE__)
#define XERO_ITER_EL(parent_element, child_element) \
for (XMBElement child_element : parent_element.GetChildNodes())
#endif // INCLUDED_XEROMYCES