| 8742 | } |
| 8743 | |
| 8744 | void throw_error_oom() |
| 8745 | { |
| 8746 | #ifdef PUGIXML_NO_EXCEPTIONS |
| 8747 | throw_error("Out of memory"); |
| 8748 | #else |
| 8749 | throw std::bad_alloc(); |
| 8750 | #endif |
| 8751 | } |
| 8752 | |
| 8753 | void* alloc_node() |
| 8754 | { |
nothing calls this directly
no outgoing calls
no test coverage detected