MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / is_attribute_of

Function is_attribute_of

Source/ThirdParty/pugixml/pugixml.cpp:3702–3709  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3700 }
3701
3702 PUGI__FN bool is_attribute_of(xml_attribute_struct* attr, xml_node_struct* node)
3703 {
3704 for (xml_attribute_struct* a = node->first_attribute; a; a = a->next_attribute)
3705 if (a == attr)
3706 return true;
3707
3708 return false;
3709 }
3710
3711 PUGI__FN bool allow_insert_attribute(xml_node_type parent)
3712 {

Callers 3

remove_attributeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected